##// END OF EJS Templates
hgk: support the old way of getting the current Ttk theme (issue3808)...
Andrew Shadura -
r18561:7365d031 stable
parent child Browse files
Show More
@@ -109,7 +109,12 b' bind all <MouseWheel> [list ::tk::MouseW'
109 109 # end of win32 section
110 110 } else {
111 111
112 if {[ttk::style theme use] eq "default"} {
112 if {[catch {
113 set theme [ttk::style theme use]
114 }]} {
115 set theme $::ttk::currentTheme
116 }
117 if {$theme eq "default"} {
113 118 ttk::style theme use clam
114 119 }
115 120
General Comments 0
You need to be logged in to leave comments. Login now