diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2015-09-27 15:07:18 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2015-09-27 15:07:18 +0200 |
commit | e5da485f77b3b8cd3bc32c13e4497a64a2ad10c3 (patch) | |
tree | b7351c6674108ea5746d70fdc2ff6c59bdc84595 /src/deamon.vala | |
parent | bbabe0f4e471dd984a1c01353c44d4eb1f336473 (diff) | |
parent | 16fe2e5d0525422ba6ca5db9e92a93d17caae302 (diff) |
Merge new upstream release
Diffstat (limited to 'src/deamon.vala')
-rw-r--r-- | src/deamon.vala | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/deamon.vala b/src/deamon.vala index 8c84f3a..f4e1aeb 100644 --- a/src/deamon.vala +++ b/src/deamon.vala @@ -43,7 +43,7 @@ public class Deamon : GLib.Application { ///////////////////////////////////////////////////////////////////// public static int main(string[] args) { - version = "0.6.5"; + version = "0.6.6"; // disable overlay scrollbar --- hacky workaround for black / // transparent background @@ -192,10 +192,12 @@ public class Deamon : GLib.Application { } if (reset) { - if (GLib.FileUtils.remove(Paths.pie_config) == 0) + if (GLib.FileUtils.remove(Paths.pie_config) == 0) { message("Removed file \"%s\"", Paths.pie_config); - if (GLib.FileUtils.remove(Paths.settings) == 0) + } + if (GLib.FileUtils.remove(Paths.settings) == 0) { message("Removed file \"%s\"", Paths.settings); + } return true; } |