|
|
|
@ -418,7 +418,11 @@ void GUI::on_actionSet_global_upload_limit_triggered() {
@@ -418,7 +418,11 @@ void GUI::on_actionSet_global_upload_limit_triggered() {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void GUI::on_actionShow_console_triggered() { |
|
|
|
|
new consoleDlg(this, BTSession); |
|
|
|
|
if(!console) { |
|
|
|
|
console = new consoleDlg(this, BTSession); |
|
|
|
|
} else { |
|
|
|
|
console->setFocus(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void GUI::on_actionSet_global_download_limit_triggered() { |
|
|
|
@ -921,6 +925,9 @@ void GUI::on_actionOptions_triggered() {
@@ -921,6 +925,9 @@ void GUI::on_actionOptions_triggered() {
|
|
|
|
|
if(!options) { |
|
|
|
|
options = new options_imp(this); |
|
|
|
|
connect(options, SIGNAL(status_changed()), this, SLOT(optionsSaved())); |
|
|
|
|
} else { |
|
|
|
|
// Get focus
|
|
|
|
|
options->setFocus(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|