Set Tcl internal variable, whether the look and feel should adhere to Motif. A parameter of 1 means adhere to Motif (e.g. no color change if mouse passes over slider). Returns the set value.
(self, boolean=None)
| 700 | pass |
| 701 | |
| 702 | def tk_strictMotif(self, boolean=None): |
| 703 | """Set Tcl internal variable, whether the look and feel |
| 704 | should adhere to Motif. |
| 705 | |
| 706 | A parameter of 1 means adhere to Motif (e.g. no color |
| 707 | change if mouse passes over slider). |
| 708 | Returns the set value.""" |
| 709 | return self.tk.getboolean(self.tk.call( |
| 710 | 'set', 'tk_strictMotif', boolean)) |
| 711 | |
| 712 | def tk_bisque(self): |
| 713 | """Change the color scheme to light brown as used in Tk 3.6 and before.""" |
nothing calls this directly
no test coverage detected