ratpoison-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [RP] window list


From: Nicolas Rachinsky
Subject: Re: [RP] window list
Date: Wed, 8 Aug 2007 13:43:26 +0200
User-agent: Mutt/1.5.15 (2007-04-06)

* Brian May <address@hidden> [2007-08-08 21:26 +1000]:
> 1. The window list is close to unusable when some windows have
> excessively long titles. This can happen if one of the titles is a web
> browser that is visiting a web page that has a very long
> title. e.g. www.connex.com.au
> 
> This means (unless I have a wide screen and even then it can sometimes
> be a problem) the numbers on the left are pushed off the screen, and
> you can't tell when number to use to go to a particular screen.

ACK.

I use the following patch to work around this problem:
diff -u -r src.org/bar.c src/bar.c
--- src.org/bar.c       Sat Aug 12 12:04:35 2006
+++ src/bar.c   Sat Aug 12 12:04:44 2006
@@ -110,6 +110,8 @@
       break;
     }
 
+  if(x<0)x=0;
+
   return x;
 }
 
@@ -138,6 +140,8 @@
            - defaults.bar_border_width * 2);
       break;
     }
+
+  if(y<0)y=0;
 
   return y;
 }
 

Nicolas

-- 
http://www.rachinsky.de/nicolas




reply via email to

[Prev in Thread] Current Thread [Next in Thread]