mirror of https://github.com/procxx/kepka.git
Fix background reset on language change.
This commit is contained in:
parent
a95a055acd
commit
5c3f667fc3
|
@ -171,7 +171,7 @@ void Application::run() {
|
||||||
DEBUG_LOG(("Application Info: showing."));
|
DEBUG_LOG(("Application Info: showing."));
|
||||||
_window->firstShow();
|
_window->firstShow();
|
||||||
|
|
||||||
if (cStartToSettings()) {
|
if (!locked() && cStartToSettings()) {
|
||||||
_window->showSettings();
|
_window->showSettings();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -241,7 +241,12 @@ void MainWindow::setupMain() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::showSettings() {
|
void MainWindow::showSettings() {
|
||||||
if (isHidden()) showFromTray();
|
if (isHidden()) {
|
||||||
|
showFromTray();
|
||||||
|
}
|
||||||
|
if (_passcodeLock) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (const auto controller = this->controller()) {
|
if (const auto controller = this->controller()) {
|
||||||
controller->showSettings();
|
controller->showSettings();
|
||||||
|
@ -253,7 +258,9 @@ void MainWindow::showSettings() {
|
||||||
void MainWindow::showSpecialLayer(
|
void MainWindow::showSpecialLayer(
|
||||||
object_ptr<Window::LayerWidget> layer,
|
object_ptr<Window::LayerWidget> layer,
|
||||||
anim::type animated) {
|
anim::type animated) {
|
||||||
if (_passcodeLock) return;
|
if (_passcodeLock) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (layer) {
|
if (layer) {
|
||||||
ensureLayerCreated();
|
ensureLayerCreated();
|
||||||
|
|
Loading…
Reference in New Issue