diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2014-09-02 23:19:58 -0500 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2014-09-02 23:19:58 -0500 |
commit | b0b9b94246fad179165cca2f4d5026409349fde0 (patch) | |
tree | a89bacc45a45d38307d2e576b464c8f8e1f19d71 | |
parent | 84a8bb0debeb68d92049ccb8731d4d07aee7e2f9 (diff) | |
download | ayatana-indicator-datetime-b0b9b94246fad179165cca2f4d5026409349fde0.tar.gz ayatana-indicator-datetime-b0b9b94246fad179165cca2f4d5026409349fde0.tar.bz2 ayatana-indicator-datetime-b0b9b94246fad179165cca2f4d5026409349fde0.zip |
reverse OK/snooze button order
-rw-r--r-- | src/snap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/snap.cpp b/src/snap.cpp index 2a0fb5b..505980c 100644 --- a/src/snap.cpp +++ b/src/snap.cpp @@ -98,8 +98,8 @@ public: g_free (title); b.set_timeout (std::chrono::duration_cast<std::chrono::seconds>(minutes)); if (interactive) { - b.add_action ("snooze", _("Snooze")); b.add_action ("ok", _("OK")); + b.add_action ("snooze", _("Snooze")); } // add 'sound', 'haptic', and 'awake' objects to the capture so |