Skip to content

Commit

Permalink
[CORRECTIVE] Fix design parameter dock window disappearing when switc…
Browse files Browse the repository at this point in the history
…hing tabs.
  • Loading branch information
hagantsa committed Jul 3, 2024
1 parent 83748c8 commit 255be9d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
3 changes: 1 addition & 2 deletions mainwindow/DockWidgetHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

//-----------------------------------------------------------------------------
Expand Down
16 changes: 8 additions & 8 deletions version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 255be9d

Please sign in to comment.