40 Preferences.setEditor( |
40 Preferences.setEditor( |
41 "MouseClickHandlersEnabled", self.mcEnabledCheckBox.isChecked() |
41 "MouseClickHandlersEnabled", self.mcEnabledCheckBox.isChecked() |
42 ) |
42 ) |
43 |
43 |
44 |
44 |
45 def create(dlg): # noqa: U100 |
45 def create(_dlg): |
46 """ |
46 """ |
47 Module function to create the configuration page. |
47 Module function to create the configuration page. |
48 |
48 |
49 @param dlg reference to the configuration dialog |
49 @param _dlg reference to the configuration dialog (unused) |
50 @type ConfigurationDialog |
50 @type ConfigurationDialog |
51 @return reference to the instantiated page |
51 @return reference to the instantiated page |
52 @rtype ConfigurationPageBase |
52 @rtype ConfigurationPageBase |
53 """ |
53 """ |
54 page = EditorMouseClickHandlerPage() |
54 page = EditorMouseClickHandlerPage() |