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:
Adel Gadllah 2009-10-01 23:44:16 +02:00 committed by Owen W. Taylor
parent cbb3a3aec8
commit 8a2cc11cc0

View File

@ -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();