mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-19 06:57:24 -06:00
BUGFIX: Only one program preferences dialog is allowed at a time
This commit is contained in:
@@ -1,5 +1,6 @@
|
|||||||
* Unreleased - Christophe Dumez <chris@qbittorrent.org> - v2.1.5
|
* Unreleased - Christophe Dumez <chris@qbittorrent.org> - v2.1.5
|
||||||
- BUGFIX: Fix actions on selected torrents (non-selected torrents could be affected)
|
- BUGFIX: Fix actions on selected torrents (non-selected torrents could be affected)
|
||||||
|
- BUGFIX: Only one program preferences dialog is allowed at a time
|
||||||
- BUGFIX: Link against boost and ssl to fix issues with gold linker
|
- BUGFIX: Link against boost and ssl to fix issues with gold linker
|
||||||
- BUGFIX: Fix memory leak in RSS
|
- BUGFIX: Fix memory leak in RSS
|
||||||
|
|
||||||
|
|||||||
@@ -908,8 +908,10 @@ void GUI::createTrayIcon() {
|
|||||||
|
|
||||||
// Display Program Options
|
// Display Program Options
|
||||||
void GUI::on_actionOptions_triggered() {
|
void GUI::on_actionOptions_triggered() {
|
||||||
options = new options_imp(this);
|
if(!options) {
|
||||||
connect(options, SIGNAL(status_changed()), this, SLOT(optionsSaved()));
|
options = new options_imp(this);
|
||||||
|
connect(options, SIGNAL(status_changed()), this, SLOT(optionsSaved()));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*****************************************************
|
/*****************************************************
|
||||||
|
|||||||
Reference in New Issue
Block a user