[sawfish] In configurator GUI, position parameter can take negative value. Depth's initial value is 0.



commit 00b1d2e7bc915bd9a083ad3e7ac0033723a4723e
Author: chrisb <zanghar freenet de>
Date:   Sun Aug 30 14:57:28 2009 +0200

    In configurator GUI, position parameter can take negative value. Depth's initial value is 0.

 ChangeLog                           |    6 ++++++
 lisp/sawfish/wm/ext/match-window.jl |    4 ++--
 man/news.texi                       |    4 +++-
 3 files changed, 11 insertions(+), 3 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index c60f12a..c9a7348 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2009-08-30  Christopher Bratusek <zanghar freenet de>
+	* lisp/sawfish/gtk/widget.jl: Number widget can take optional initial value [Teika Kazura]
+
+	* lisp/sawfish/wm/ext/match-window.jl: In configurator GUI, position parameter can take negative value.
+					       Depth's initial value is 0.
+
 2009-08-29  Christopher Bratusek <zanghar freenet de>
 	* lisp/sawfish/wm.jl: changed position of user-level initialization
 
diff --git a/lisp/sawfish/wm/ext/match-window.jl b/lisp/sawfish/wm/ext/match-window.jl
index 64c8aee..902ddf3 100644
--- a/lisp/sawfish/wm/ext/match-window.jl
+++ b/lisp/sawfish/wm/ext/match-window.jl
@@ -74,12 +74,12 @@
        (ignore-program-position boolean)
        (place-mode ,(lambda () `(choice ,@placement-modes)))
        (position (or 
-                    (pair (number -65535) (number -65535)) 
+                    (pair (number -65536 65536 0) (number -65536 65536 0))
                     (choice center east north north-east north-west south south-east south-west west)))
        (dimensions (pair (number 1) (number 1)))
        (workspace (number 1))
        (viewport (pair (number 1) (number 1)))
-       (depth (number -16 16))
+       (depth (number -16 16 0))
        (placement-weight (number 0))
        (fixed-position boolean)
        (maximized (choice all vertical horizontal))
diff --git a/man/news.texi b/man/news.texi
index 109d4c4..4c6af20 100644
--- a/man/news.texi
+++ b/man/news.texi
@@ -40,6 +40,8 @@ they occurred between. For more detailed information see the
 @item Fixed issue with translated tooltip strings [Teika Kazura]
 
 @item Fixed a call of select-workspace-from-first [Michal Maruska]
+
+ item In Sawfish-UI position parameters can be negative [Christopher Bratusek, Teika Kazura]
 @end itemize
 @item New features:
 @itemize @minus
@@ -70,7 +72,7 @@ they occurred between. For more detailed information see the
 
 @item Use gnome-www-browser for displaying GNOME-Homepage instead of gnome-moz-remote [Christopher Bratusek]
 
- item Make strings in sawfish-ui fully translatable [Alexey I. Froloff]
+ item Make strings in Sawfish-UI fully translatable [Alexey I. Froloff]
 
 @item Added get-window-by-class and get-window-by-class-re [Christopher Bratusek]
 @end itemize



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