208 self.restoreGeometry(g) |
208 self.restoreGeometry(g) |
209 self.__startup = True |
209 self.__startup = True |
210 |
210 |
211 self.__proxyFactory = E5NetworkProxyFactory() |
211 self.__proxyFactory = E5NetworkProxyFactory() |
212 QNetworkProxyFactory.setApplicationProxyFactory(self.__proxyFactory) |
212 QNetworkProxyFactory.setApplicationProxyFactory(self.__proxyFactory) |
|
213 QNetworkProxyFactory.setUseSystemConfiguration( |
|
214 Preferences.getUI("UseSystemProxy")) |
213 |
215 |
214 self.capProject = "" |
216 self.capProject = "" |
215 self.capEditor = "" |
217 self.capEditor = "" |
216 self.captionShowsFilename = Preferences.getUI("CaptionShowsFilename") |
218 self.captionShowsFilename = Preferences.getUI("CaptionShowsFilename") |
217 |
219 |
5522 if self.layoutType == "Sidebars": |
5524 if self.layoutType == "Sidebars": |
5523 delay = Preferences.getUI("SidebarDelay") |
5525 delay = Preferences.getUI("SidebarDelay") |
5524 self.leftSidebar.setDelay(delay) |
5526 self.leftSidebar.setDelay(delay) |
5525 self.bottomSidebar.setDelay(delay) |
5527 self.bottomSidebar.setDelay(delay) |
5526 self.rightSidebar.setDelay(delay) |
5528 self.rightSidebar.setDelay(delay) |
|
5529 |
|
5530 QNetworkProxyFactory.setUseSystemConfiguration( |
|
5531 Preferences.getUI("UseSystemProxy")) |
5527 |
5532 |
5528 from HexEdit.HexEditMainWindow import HexEditMainWindow |
5533 from HexEdit.HexEditMainWindow import HexEditMainWindow |
5529 for hexEditor in HexEditMainWindow.windows: |
5534 for hexEditor in HexEditMainWindow.windows: |
5530 hexEditor.preferencesChanged() |
5535 hexEditor.preferencesChanged() |
5531 |
5536 |