• 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

Revisão31d5cceae3b0a8cf6fcef1704f8ee5be97c5a2af (tree)
Hora2000-05-10 02:06:09
Autorjohn <john>
Commiterjohn

Mensagem de Log

(transient-unmap-window): misc improvements, should fix the reported
problems in click-to-focus mode

Mudança Sumário

Diff

--- a/lisp/sawfish/wm/state/transient.jl
+++ b/lisp/sawfish/wm/state/transient.jl
@@ -67,13 +67,15 @@
6767 (when (or (not parent)
6868 (not (window-mapped-p parent))
6969 (not (window-visible-p parent))
70- (window-outside-viewport-p parent))
70+ (window-outside-viewport-p parent)
71+ (not (window-really-wants-input-p parent)))
7172 ;; if no parent, choose the topmost window (if in click-to-focus
7273 ;; mode) or the window under the pointer otherwise
73- (unless (eq focus-mode 'click)
74- (setq parent (query-pointer-window)))
74+ (if (eq focus-mode 'click)
75+ (setq parent (query-pointer-window))
76+ (setq parent nil))
7577 (unless (or parent (eq focus-mode 'enter-exit))
76- (setq parent (car (window-order current-workspace)))))
78+ (setq parent (window-order-most-recent))))
7779 (when (or (null parent) (window-really-wants-input-p parent))
7880 (set-input-focus parent)))))
7981
--- a/lisp/transient.jl
+++ b/lisp/transient.jl
@@ -67,13 +67,15 @@
6767 (when (or (not parent)
6868 (not (window-mapped-p parent))
6969 (not (window-visible-p parent))
70- (window-outside-viewport-p parent))
70+ (window-outside-viewport-p parent)
71+ (not (window-really-wants-input-p parent)))
7172 ;; if no parent, choose the topmost window (if in click-to-focus
7273 ;; mode) or the window under the pointer otherwise
73- (unless (eq focus-mode 'click)
74- (setq parent (query-pointer-window)))
74+ (if (eq focus-mode 'click)
75+ (setq parent (query-pointer-window))
76+ (setq parent nil))
7577 (unless (or parent (eq focus-mode 'enter-exit))
76- (setq parent (car (window-order current-workspace)))))
78+ (setq parent (window-order-most-recent))))
7779 (when (or (null parent) (window-really-wants-input-p parent))
7880 (set-input-focus parent)))))
7981