refocus input if a single instance window is resurfaced

Signed-off-by: Albert S <mail@quitesimple.org>
此提交包含在:
hxbrn
2019-09-01 20:42:39 +02:00
提交者 Albert S
父節點 18e046d028
當前提交 ea697d62ba
共有 3 個檔案被更改,包括 7 行新增0 行删除

查看文件

@@ -86,9 +86,11 @@ int main(int argc, char *argv[])
w->showMaximized();
w->activateWindow();
w->raise();
w->focusInput();
}
});
w->showMaximized();
w->focusInput();
}

查看文件

@@ -423,3 +423,7 @@ bool Window::eventFilter(QObject *obj, QEvent *event)
}
void Window::focusInput()
{
this->lineEdit->setFocus();
}

查看文件

@@ -74,6 +74,7 @@ public:
Window(ConfigProvider &configProvider);
void setSystemConfig(const QVector<EntryConfig> &config);
bool eventFilter(QObject *obj, QEvent *event);
void focusInput();
~Window();
};