Skip to content

Commit 2a11c90

Browse files
committed
* mainframe.tcl Menu text shows white on white on Mac aqua
[Bug 3105665] reported by Scott Smedley fixed by Kevin Walzer.
1 parent 39a695d commit 2a11c90

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

ChangeLog

+10-5
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,32 @@
11
# ------------------------------------------------------------------------------
22
# ChangeLog
33
# This file is part of Unifix BWidget Toolkit
4-
# $Id: ChangeLog,v 1.218 2010/05/31 14:56:44 oehhar Exp $
4+
# $Id: ChangeLog,v 1.219 2010/11/09 16:04:45 oehhar Exp $
55
# ------------------------------------------------------------------------------
66

7-
2010-05-31 Harald Oehlmann < [email protected]>
7+
2010-11-09 Harald Oehlmann <[email protected]>
8+
9+
* mainframe.tcl Menu text shows white on white on Mac aqua
10+
[Bug 3105665] reported by Scott Smedley fixed by Kevin Walzer.
11+
12+
2010-05-31 Harald Oehlmann <[email protected]>
813

914
* listbox.html Reflected patch 2010-05-12 in documentation.
1015
The selection may not be disabled any more by binding button 1.
1116

12-
2010-05-12 Harald Oehlmann < [email protected]>
17+
2010-05-12 Harald Oehlmann <[email protected]>
1318

1419
* listbox.tcl(ListBox::bindText and ListBox::bindImage)
1520
Method bindText and bindImage overwrote internal selection
1621
bindings [Bug 3000293] reported by Robert Karen.
1722

18-
2010-05-11 Harald Oehlmann < [email protected]>
23+
2010-05-11 Harald Oehlmann <[email protected]>
1924

2025
* listbox.tcl(ListBox::see) Method see shifts image out of
2126
view. Showed up, by a selection click on a long item with icon
2227
[Bug 2999764] reported by Robert Karen.
2328

24-
2010-05-05 Harald Oehlmann < [email protected]>
29+
2010-05-05 Harald Oehlmann <[email protected]>
2530

2631
* listbox.tcl(ListBox::_configureSelectmode) Drag modifies
2732
multiple selection [Bug 2995969] reported by Robert Karen.

mainframe.tcl

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ----------------------------------------------------------------------------
22
# mainframe.tcl
33
# This file is part of Unifix BWidget Toolkit
4-
# $Id: mainframe.tcl,v 1.26 2009/10/25 20:55:36 oberdorfer Exp $
4+
# $Id: mainframe.tcl,v 1.27 2010/11/09 16:04:45 oehhar Exp $
55
# ------------------------------------------------------------------------------
66
# Index of commands:
77
# - MainFrame::create
@@ -512,7 +512,8 @@ proc MainFrame::_create_menubar { path descmenu } {
512512
}
513513
}
514514

515-
if { ![BWidget::using ttk] && $tcl_platform(platform) == "unix" } {
515+
if { ![BWidget::using ttk] && $tcl_platform(platform) == "unix"
516+
&& [tk windowingsystem] !="aqua" } {
516517
set menuopts [list -background [Widget::getoption $path -background] \
517518
-borderwidth 1]
518519
} else {

0 commit comments

Comments
 (0)