[mcclim-cvs] CVS mcclim
dlichteblau
dlichteblau at common-lisp.net
Sat May 13 00:19:38 UTC 2006
Update of /project/mcclim/cvsroot/mcclim
In directory clnet:/tmp/cvs-serv8095
Modified Files:
menu.lisp
Log Message:
Oops, don't allow the menu bar to get smaller on resizes.
* menu.lisp ((compose-space menu-bar)): Specify min-height.
--- /project/mcclim/cvsroot/mcclim/menu.lisp 2006/05/13 00:03:41 1.35
+++ /project/mcclim/cvsroot/mcclim/menu.lisp 2006/05/13 00:19:36 1.36
@@ -390,8 +390,9 @@
(defmethod compose-space ((pane menu-bar) &key width height)
(declare (ignore width height))
- (space-requirement+ (call-next-method)
- (make-space-requirement :height 4 :max-height 4)))
+ (space-requirement+
+ (call-next-method)
+ (make-space-requirement :height 4 :max-height 4 :min-height 4)))
(defmethod box-layout-mixin/horizontally-allocate-space
((pane menu-bar) real-width real-height)
More information about the Mcclim-cvs
mailing list