eric6/Preferences/ConfigurationPages/WebBrowserFlashCookieManagerPage.py

branch
without_py2_and_pyqt4
changeset 7206
74666c6679af
parent 7196
ab0a91b82b37
child 7229
53054eb5b15a
equal deleted inserted replaced
7204:cbf6d88004ce 7206:74666c6679af
45 45
46 def save(self): 46 def save(self):
47 """ 47 """
48 Public slot to save the Flash Cookies Manager configuration. 48 Public slot to save the Flash Cookies Manager configuration.
49 """ 49 """
50 Preferences.setWebBrowser("FlashCookiesDataPath", 50 Preferences.setWebBrowser(
51 self.flashDataPathPicker.text()) 51 "FlashCookiesDataPath", self.flashDataPathPicker.text())
52 Preferences.setWebBrowser("FlashCookieAutoRefresh", 52 Preferences.setWebBrowser(
53 self.autoModeGroup.isChecked()) 53 "FlashCookieAutoRefresh", self.autoModeGroup.isChecked())
54 Preferences.setWebBrowser("FlashCookieNotify", 54 Preferences.setWebBrowser(
55 self.notificationGroup.isChecked()) 55 "FlashCookieNotify", self.notificationGroup.isChecked())
56 Preferences.setWebBrowser("FlashCookiesDeleteOnStartExit", 56 Preferences.setWebBrowser(
57 self.deleteGroup.isChecked()) 57 "FlashCookiesDeleteOnStartExit", self.deleteGroup.isChecked())
58 58
59 59
60 def create(dlg): 60 def create(dlg):
61 """ 61 """
62 Module function to create the configuration page. 62 Module function to create the configuration page.

eric ide

mercurial