Tue, 14 Sep 2021 18:10:51 +0200
Optimized the layout margins.
--- a/ChangeLog Sat Sep 11 14:13:50 2021 +0200 +++ b/ChangeLog Tue Sep 14 18:10:51 2021 +0200 @@ -1,5 +1,8 @@ ChangeLog --------- +Version 1.1.2: +- optimized the layout margins + Version 1.1.1: - added an icon for the new sidebars layout
--- a/MqttMonitor/MqttMonitorWidget.py Sat Sep 11 14:13:50 2021 +0200 +++ b/MqttMonitor/MqttMonitorWidget.py Tue Sep 14 18:10:51 2021 +0200 @@ -54,6 +54,8 @@ super().__init__(parent) self.setupUi(self) + self.layout().setContentsMargins(0, 3, 0, 0) + self.__plugin = plugin self.__iconSuffix = "dark" if usesDarkPalette else "light"
--- a/PluginMqttMonitor.py Sat Sep 11 14:13:50 2021 +0200 +++ b/PluginMqttMonitor.py Tue Sep 14 18:10:51 2021 +0200 @@ -26,7 +26,7 @@ author = "Detlev Offenbach <detlev@die-offenbachs.de>" autoactivate = True deactivateable = True -version = "1.1.1" +version = "1.1.2" className = "MqttMonitorPlugin" packageName = "MqttMonitor" shortDescription = "Plug-in implementing a tool to connect to a MQTT broker"