mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-12 00:06:16 -07:00
Bringing the AddNewTorrentDialog to the front.
This commit is contained in:
parent
89b82778e6
commit
b78ea79d30
4 changed files with 27 additions and 12 deletions
|
@ -263,14 +263,8 @@ MainWindow::MainWindow(QWidget *parent, const QStringList& torrentCmdLine) : QMa
|
|||
// Load Window state and sizes
|
||||
readSettings();
|
||||
|
||||
if (!ui_locked) {
|
||||
if (pref.startMinimized() && systrayIcon) {
|
||||
show();
|
||||
minimizeWindow();
|
||||
// XXX: Using showMinimized() makes it impossible to restore
|
||||
// the window if "Minimize to systray" is enabled.
|
||||
//showMinimized();
|
||||
} else {
|
||||
if (systrayIcon) {
|
||||
if (!(pref.startMinimized() || ui_locked)) {
|
||||
show();
|
||||
activateWindow();
|
||||
raise();
|
||||
|
@ -323,10 +317,14 @@ MainWindow::MainWindow(QWidget *parent, const QStringList& torrentCmdLine) : QMa
|
|||
#endif
|
||||
|
||||
// Make sure the Window is visible if we don't have a tray icon
|
||||
if (!systrayIcon && isHidden()) {
|
||||
show();
|
||||
activateWindow();
|
||||
raise();
|
||||
if (!systrayIcon) {
|
||||
if (pref.startMinimized()) {
|
||||
showMinimized();
|
||||
} else {
|
||||
show();
|
||||
activateWindow();
|
||||
raise();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue