diff --git a/mainwindow/DockWidgetHandler.cpp b/mainwindow/DockWidgetHandler.cpp index 0e2f63028..b9f3617ca 100644 --- a/mainwindow/DockWidgetHandler.cpp +++ b/mainwindow/DockWidgetHandler.cpp @@ -709,11 +709,10 @@ void DockWidgetHandler::updateWindowAndControlVisibility(QWidget* currentTabWidg bool allowedToShow = isSupportedWindowType(currentTabWidget, windowType); bool wantedToShow = visibilities_.value(windowType); - bool selected = showAction->isChecked(); visibilityControls_[windowType]->setVisible(allowedToShow); showAction->setVisible(allowedToShow && wantedToShow); - showAction->setChecked(selected && allowedToShow && wantedToShow); + showAction->setChecked(allowedToShow && wantedToShow); } //----------------------------------------------------------------------------- diff --git a/version.h b/version.h index 9ca8faf2a..d0ceaa6a7 100644 --- a/version.h +++ b/version.h @@ -10,20 +10,20 @@ #ifndef VERSIONNO__H #define VERSIONNO__H -#define VERSION_FULL 3.13.443.0 +#define VERSION_FULL 3.13.449.0 #define VERSION_BASEYEAR 0 -#define VERSION_DATE "2024-07-02" -#define VERSION_TIME "15:16:26" +#define VERSION_DATE "2024-07-03" +#define VERSION_TIME "09:59:59" #define VERSION_MAJOR 3 #define VERSION_MINOR 13 -#define VERSION_BUILDNO 443 +#define VERSION_BUILDNO 449 #define VERSION_EXTEND 0 -#define VERSION_FILE 3,13,443,0 -#define VERSION_PRODUCT 3,13,443,0 -#define VERSION_FILESTR "3,13,443,0" -#define VERSION_PRODUCTSTR "3,13,443,0" +#define VERSION_FILE 3,13,449,0 +#define VERSION_PRODUCT 3,13,449,0 +#define VERSION_FILESTR "3,13,449,0" +#define VERSION_PRODUCTSTR "3,13,449,0" #endif