diff options
author | Jörg Frings-Fürst <jff@merkur> | 2014-07-23 11:40:08 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <jff@merkur> | 2014-07-23 11:40:08 +0200 |
commit | 6edfb34cb3eee958e392a433ae9ac4f240279d09 (patch) | |
tree | d33f9e9032809dba2ccb1b8c9ccc928507c38cf6 /src/pies/pieManager.vala | |
parent | 1f6f24308e96040962794c5a9ffd81597b5e072a (diff) |
Imported Upstream version 0.5.5upstream/0.5.5
Diffstat (limited to 'src/pies/pieManager.vala')
-rw-r--r-- | src/pies/pieManager.vala | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/pies/pieManager.vala b/src/pies/pieManager.vala index f574085..83a8309 100644 --- a/src/pies/pieManager.vala +++ b/src/pies/pieManager.vala @@ -81,7 +81,7 @@ public class PieManager : GLib.Object { /// Opens the Pie with the given ID, if it exists. ///////////////////////////////////////////////////////////////////// - public static void open_pie(string id, bool at_last_position = false) { + public static void open_pie(string id) { if (!a_pie_is_active) { Pie? pie = all_pies[id]; @@ -92,11 +92,7 @@ public class PieManager : GLib.Object { var window = new PieWindow(); window.load_pie(pie); - if (at_last_position) { - window.open_at(last_x, last_y); - } else { - window.open(); - } + window.open(); opened_windows.add(window); |