src/eric7/Preferences/ConfigurationDialog.py

branch
server
changeset 10704
27d21e5163b8
parent 10531
3308e8349e4c
parent 10692
9becf9ca115c
child 10928
46651e194fbe
equal deleted inserted replaced
10680:306373ccf8fd 10704:27d21e5163b8
1482 if sb: 1482 if sb:
1483 sb.setValue(0) 1483 sb.setValue(0)
1484 1484
1485 self.__currentConfigurationPageName = pageName 1485 self.__currentConfigurationPageName = pageName
1486 1486
1487 def __createInterfaceLightPageWithSidebars(self, configDlg): # noqa: U100 1487 def __createInterfaceLightPageWithSidebars(self, _configDlg):
1488 """ 1488 """
1489 Private method to create the interface configuration page in light mode. 1489 Private method to create the interface configuration page in light mode.
1490 1490
1491 @param configDlg reference to the configuration dialog 1491 @param _configDlg reference to the configuration dialog (unused)
1492 @type ConfigurationWidget 1492 @type ConfigurationWidget
1493 @return reference to the configuration page 1493 @return reference to the configuration page
1494 @rtype InterfaceLightPage 1494 @rtype InterfaceLightPage
1495 """ 1495 """
1496 from .ConfigurationPages import InterfaceLightPage 1496 from .ConfigurationPages import InterfaceLightPage
1497 1497
1498 page = InterfaceLightPage.create(self, withSidebars=True) 1498 page = InterfaceLightPage.create(self, withSidebars=True)
1499 return page 1499 return page
1500 1500
1501 def resizeEvent(self, evt): 1501 def resizeEvent(self, _evt):
1502 """ 1502 """
1503 Protected method to handle the resizing of the widget. 1503 Protected method to handle the resizing of the widget.
1504 1504
1505 @param evt reference to the event object 1505 @param _evt reference to the event object (unused)
1506 @type QResizeEvent 1506 @type QResizeEvent
1507 """ 1507 """
1508 self.__resizeConfigStack() 1508 self.__resizeConfigStack()
1509 1509
1510 def __resizeConfigStack(self): 1510 def __resizeConfigStack(self):

eric ide

mercurial