Sun, 03 Jan 2021 17:58:37 +0100
Fixed some code style issues.
--- a/eric6/Documentation/Source/eric6.UI.UserInterface.html Sun Jan 03 17:49:38 2021 +0100 +++ b/eric6/Documentation/Source/eric6.UI.UserInterface.html Sun Jan 03 17:58:37 2021 +0100 @@ -203,11 +203,6 @@ emitted after the master password has been changed with the old and the new password </dd> -<dt>onlineStateChanged(online)</dt> -<dd> -emitted to indicate a change of the - network state -</dd> <dt>preferencesChanged()</dt> <dd> emitted after the preferences were changed
--- a/eric6/Preferences/__init__.py Sun Jan 03 17:49:38 2021 +0100 +++ b/eric6/Preferences/__init__.py Sun Jan 03 17:58:37 2021 +0100 @@ -1128,8 +1128,7 @@ QWebEngineSettings.AllowGeolocationOnInsecureOrigins), "AllowWindowActivationFromJavaScript": webEngineSettings.testAttribute( - QWebEngineSettings.AllowWindowActivationFromJavaScript - ), + QWebEngineSettings.AllowWindowActivationFromJavaScript), "ShowScrollBars": webEngineSettings.testAttribute( QWebEngineSettings.ShowScrollBars), "PlaybackRequiresUserGesture":
--- a/eric6/UI/UserInterface.py Sun Jan 03 17:49:38 2021 +0100 +++ b/eric6/UI/UserInterface.py Sun Jan 03 17:58:37 2021 +0100 @@ -136,8 +136,6 @@ name of the menu and a reference to the menu are given. @signal masterPasswordChanged(str, str) emitted after the master password has been changed with the old and the new password - @signal onlineStateChanged(online) emitted to indicate a change of the - network state """ appendStderr = pyqtSignal(str) appendStdout = pyqtSignal(str)