Корректировка поведения GUI

This commit is contained in:
krivoshein
2025-01-31 11:27:57 +03:00
parent d3b55efd0e
commit c46986f9e3
10 changed files with 42 additions and 19 deletions

View File

@@ -28,6 +28,12 @@ void ViewerInstructors::setAuthComplited(bool authComplited)
updateButtons();
}
void ViewerInstructors::deactivate()
{
CommonView::deactivate();
updateButtons();
}
void ViewerInstructors::changeEvent(QEvent *event)
{
// В случае получения события изменения языка приложения

View File

@@ -20,6 +20,8 @@ public:
public:
void setAuthComplited(bool authComplited);
void deactivate();
protected:
void changeEvent(QEvent * event) override;