Skip to content

Commit 5283bce

Browse files
committed
gitk: Legacy widgets doesn't have combobox
Always use ttk::combobox even if "Use themed widgets" setting is off. Signed-off-by: YOKOTA Hiroshi <[email protected]>
1 parent 6297a6d commit 5283bce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gitk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11782,12 +11782,12 @@ proc prefspage_general {notebook} {
1178211782
grid x $page.tabstopl $page.tabstop -sticky w
1178311783
1178411784
${NS}::label $page.wrapcommentl -text [mc "Wrap comment text"]
11785-
${NS}::combobox $page.wrapcomment -values {none char word} -state readonly \
11785+
ttk::combobox $page.wrapcomment -values {none char word} -state readonly \
1178611786
-textvariable wrapcomment
1178711787
grid x $page.wrapcommentl $page.wrapcomment -sticky w
1178811788
1178911789
${NS}::label $page.wrapdefaultl -text [mc "Wrap other text"]
11790-
${NS}::combobox $page.wrapdefault -values {none char word} -state readonly \
11790+
ttk::combobox $page.wrapdefault -values {none char word} -state readonly \
1179111791
-textvariable wrapdefault
1179211792
grid x $page.wrapdefaultl $page.wrapdefault -sticky w
1179311793

0 commit comments

Comments
 (0)