[VDE] Allow visual database display to toggle to table based display. (#6357)

This commit is contained in:
BruebachL 2025-11-27 23:03:30 +01:00 committed by GitHub
parent c75a483ee6
commit bac6beeb50
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 78 additions and 34 deletions

View file

@ -25,7 +25,8 @@ public:
void retranslateUi() override;
[[nodiscard]] QString getTabText() const override
{
return tr("Visual Database Display");
return visualDatabaseDisplayWidget->displayModeButton->isChecked() ? tr("Database Display")
: tr("Visual Database Display");
}
};