[Eclipse-cvs] CVS eclipse
ihatchondo
ihatchondo at common-lisp.net
Fri Feb 20 18:03:55 UTC 2009
Update of /project/eclipse/cvsroot/eclipse
In directory cl-net:/tmp/cvs-serv3688
Modified Files:
input.lisp
Log Message:
Fix: invalid use of window type attribute that leads to impropoer workarea computations.
--- /project/eclipse/cvsroot/eclipse/input.lisp 2008/08/29 14:57:47 1.52
+++ /project/eclipse/cvsroot/eclipse/input.lisp 2009/02/20 18:03:55 1.53
@@ -1,5 +1,5 @@
;;; -*- Mode: Lisp; Package: ECLIPSE-INTERNALS -*-
-;;; $Id: input.lisp,v 1.52 2008/08/29 14:57:47 ihatchondo Exp $
+;;; $Id: input.lisp,v 1.53 2009/02/20 18:03:55 ihatchondo Exp $
;;;
;;; ECLIPSE. The Common Lisp Window Manager.
;;; Copyright (C) 2000, 2001, 2002 Iban HATCHONDO
@@ -352,7 +352,7 @@
(setf item-to-draw (wm-name (widget-window app)))
(xlib:queue-event *display* :exposure :window window :count 0))))
((:_net_wm_strut_partial :_net_wm_strut)
- (when (eq type :_net_wm_window_type_dock)
+ (when (member :_net_wm_window_type_dock type)
(update-workarea-property *root*)))
(:wm_state (update-lists app (car (wm-state window)) *root*))
(:wm_transient_for (computes-transient-for app)))))
More information about the Eclipse-cvs
mailing list