• R/O
  • HTTP
  • SSH
  • HTTPS

提交

標籤
無標籤

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

修訂4774877b0680adfe447a0641b54b27673f5c29f7 (tree)
時間2010-11-20 18:53:04
作者Christopher Roy Bratusek <zanghar@free...>
CommiterChristopher Roy Bratusek

Log Message

improved fallback values for hot-spots
(not erroring when called if not user re-defined)

Change Summary

差異

--- a/lisp/sawfish/wm/edge/hot-spots.jl
+++ b/lisp/sawfish/wm/edge/hot-spots.jl
@@ -33,28 +33,28 @@
3333
3434 (define-structure-alias hot-spots sawfish.wm.edge.hot-spots)
3535
36- (defvar left-edge-program nil
36+ (defvar left-edge-program (lambda () t)
3737 "The program launched when hitting the left-edge.")
3838
39- (defvar top-left-corner-program nil
39+ (defvar top-left-corner-program (lambda () t)
4040 "The program launched when hitting the top-left-corner.")
4141
42- (defvar top-edge-program nil
42+ (defvar top-edge-program (lambda () t)
4343 "The program launched when hitting the top-edge.")
4444
45- (defvar top-right-corner-program nil
45+ (defvar top-right-corner-program (lambda () t)
4646 "The program launched when hitting the top-right-corner.")
4747
48- (defvar right-edge-program nil
48+ (defvar right-edge-program (lambda () t)
4949 "The program launched when hitting the right-edge.")
5050
51- (defvar bottom-right-corner-program nil
51+ (defvar bottom-right-corner-program (lambda () t)
5252 "The program launched when hitting the bottom-right-corner.")
5353
54- (defvar bottom-edge-program nil
54+ (defvar bottom-edge-program (lambda () t)
5555 "The program launched when hitting the bottom-edge.")
5656
57- (defvar bottom-left-corner-program nil
57+ (defvar bottom-left-corner-program (lambda () t)
5858 "The program launched when hitting the bottom-left-corner.")
5959
6060 (define (hot-spot-activate spot)