Merge lp:~julien-spautz/cable/switched-strings into lp:cable

Proposed by Julien Spautz
Status: Merged
Merged at revision: 110
Proposed branch: lp:~julien-spautz/cable/switched-strings
Merge into: lp:cable
Diff against target: 12 lines (+1/-1)
1 file modified
src/Widgets/Server.vala (+1/-1)
To merge this branch: bzr merge lp:~julien-spautz/cable/switched-strings
Reviewer Review Type Date Requested Status
Cable Developers Pending
Review via email: mp+179810@code.launchpad.net

Description of the change

Fixed a stupid mistake I made. Obviously, when setting the 'away' property to true the menu item's label should be set to 'Mark Present' and vice versa.

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'src/Widgets/Server.vala'
2--- src/Widgets/Server.vala 2013-08-06 15:32:12 +0000
3+++ src/Widgets/Server.vala 2013-08-12 21:09:33 +0000
4@@ -37,7 +37,7 @@
5
6 public bool away {
7 set {
8- away_menu_item.label = (value) ? _("Mark Away") : _("Mark Present");
9+ away_menu_item.label = (value) ? _("Mark Present") : _("Mark Away");
10 away_menu_item.show_all ();
11 }
12 }

Subscribers

People subscribed via source and target branches

to all changes: