mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-18 07:34:54 +00:00
Fix rundialog not closing for internal commands
Signed-off-by: Adel Gadllah <adel.gadllah@gmail.com> https://bugzilla.gnome.org/show_bug.cgi?id=597076
This commit is contained in:
parent
cbb3a3aec8
commit
8a2cc11cc0
1 changed files with 1 additions and 1 deletions
|
|
@ -148,6 +148,7 @@ RunDialog.prototype = {
|
|||
},
|
||||
|
||||
_run : function(command) {
|
||||
this._commandError = false;
|
||||
let f;
|
||||
if (this._enableInternalCommands)
|
||||
f = this._internalCommands[command];
|
||||
|
|
@ -157,7 +158,6 @@ RunDialog.prototype = {
|
|||
f();
|
||||
} else if (command) {
|
||||
try {
|
||||
this._commandError = false;
|
||||
let [ok, len, args] = GLib.shell_parse_argv(command);
|
||||
let p = new Shell.Process({'args' : args});
|
||||
p.run();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue