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)
| 718 | pass |
| 719 | |
| 720 | def tk_strictMotif(self, boolean=None): |
| 721 | """Set Tcl internal variable, whether the look and feel |
| 722 | should adhere to Motif. |
| 723 | |
| 724 | A parameter of 1 means adhere to Motif (e.g. no color |
| 725 | change if mouse passes over slider). |
| 726 | Returns the set value.""" |
| 727 | return self.tk.getboolean(self.tk.call( |
| 728 | 'set', 'tk_strictMotif', boolean)) |
| 729 | |
| 730 | def tk_bisque(self): |
| 731 | """Change the color scheme to light brown as used in Tk 3.6 and before.""" |
nothing calls this directly
no test coverage detected