• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Japanese translation of message catalog for Sawfish Window-Manager


Commit MetaInfo

Revision647b03188c7141bb6166729074e39be789a5fe8c (tree)
Time2010-03-20 04:14:14
AuthorChristopher Roy Bratusek <zanghar@free...>
CommiterChristopher Roy Bratusek

Log Message

let maximize-/-fullscreen/xinerama honor maximize-raises

Change Summary

Incremental Difference

--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
1+2010-03-19 Christopher Bratusek <zanghar@freenet.de>
2+ * lisp/sawfish/wm/state/maximize.jl: make maximize-/-fullscreen/fullxinerama
3+ honor maximize-raises [Nolan Leake]
4+
15 2010-03-13 Christopher Bratusek <zanghar@freenet.de>
26 * lisp/sawfish/wm/util/display-wininfo.jl: missing require
37
--- a/lisp/sawfish/wm/state/maximize.jl
+++ b/lisp/sawfish/wm/state/maximize.jl
@@ -558,7 +558,8 @@ unmaximized."
558558 (+ (car head-offset) (car vp-offset))
559559 (+ (cdr head-offset) (cdr vp-offset))
560560 (car head-dims) (cdr head-dims))
561- (raise-window* w)
561+ (when maximize-raises
562+ (raise-window* w))
562563 (window-put w 'maximized-fullscreen t)
563564 (window-put w 'maximized-vertically t)
564565 (window-put w 'maximized-horizontally t)
@@ -595,7 +596,8 @@ t")
595596 (cdr vp-offset)
596597 (+ (car screen-dims) (car vp-offset))
597598 (+ (cdr screen-dims) (cdr vp-offset)))
598- (raise-window* w)
599+ (when maximize-raises
600+ (raise-window* w))
599601 (window-put w 'maximized-fullscreen t)
600602 (window-put w 'maximized-vertically t)
601603 (window-put w 'maximized-horizontally t)
--- a/man/news.texi
+++ b/man/news.texi
@@ -43,6 +43,9 @@ accordingly. [Fuchur]
4343
4444 @item Unsupported option @code{ignore-window-input-hint} is deleted [Teika kazura] @*
4545 It has been invalid for long.
46+
47+@item Honor maximize-raises in @code{maximize-window-fullscreen} and
48+@code{maximize-window-fullxinerama}, too, not just in maximize-window [Nolan Leake]
4649 @end itemize
4750
4851 @item Other Changes