version
This commit is contained in:
parent
1205beec8e
commit
8c49dfd3fa
|
@ -1105,8 +1105,8 @@ void MainWindow::applyUISettings()
|
|||
|
||||
ui->actionProject->setChecked(settings.showProject());
|
||||
showHideInfosTab(ui->tabProject,settings.showProject());
|
||||
// ui->actionWatch->setChecked(settings.showWatch());
|
||||
// showHideInfosTab(ui->tabWatch,settings.showWatch());
|
||||
ui->actionWatch->setChecked(false);
|
||||
showHideInfosTab(ui->tabWatch,settings.showWatch());
|
||||
ui->actionStructure->setChecked(settings.showStructure());
|
||||
showHideInfosTab(ui->tabStructure,settings.showStructure());
|
||||
ui->actionFiles->setChecked(settings.showFiles());
|
||||
|
@ -7392,6 +7392,13 @@ PSymbolUsageManager &MainWindow::symbolUsageManager()
|
|||
|
||||
void MainWindow::showHideInfosTab(QWidget *widget, bool show)
|
||||
{
|
||||
if (widget == ui->tabWatch) {
|
||||
int idx = findTabIndex(ui->tabExplorer,widget);
|
||||
if (idx >= 0) {
|
||||
ui->tabExplorer->removeTab(idx);
|
||||
}
|
||||
return;
|
||||
}
|
||||
int idx = findTabIndex(ui->tabExplorer,widget);
|
||||
if (idx>=0) {
|
||||
if (!show) {
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
APP_VERSION="3.2"
|
||||
APP_VERSION="1.0"
|
||||
APP_VERSION_SUFFIX="alpha"
|
||||
|
|
Loading…
Reference in New Issue