Merge lp:~marcus-lundgren/noise/fix-1101370 into lp:~elementary-apps/noise/trunk

Proposed by Marcus Lundgren
Status: Merged
Merged at revision: 1273
Proposed branch: lp:~marcus-lundgren/noise/fix-1101370
Merge into: lp:~elementary-apps/noise/trunk
Diff against target: 13 lines (+3/-0)
1 file modified
src/Dialogs/SmartPlaylistEditor.vala (+3/-0)
To merge this branch: bzr merge lp:~marcus-lundgren/noise/fix-1101370
Reviewer Review Type Date Requested Status
Corentin Noël Approve
Review via email: mp+144580@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Corentin Noël (tintou) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'src/Dialogs/SmartPlaylistEditor.vala'
2--- src/Dialogs/SmartPlaylistEditor.vala 2013-01-18 17:31:24 +0000
3+++ src/Dialogs/SmartPlaylistEditor.vala 2013-01-23 20:18:20 +0000
4@@ -95,6 +95,9 @@
5
6 limit_check.set_active (sp.limit);
7 limit_spin.set_value ((double)sp.limit_amount);
8+
9+ limit_spin.sensitive = limit_check.active;
10+ limit_check.toggled.connect(() => { limit_spin.sensitive = limit_check.active; });
11
12 limiter_grid.attach (limit_check, 0, 0, 1, 1);
13 limiter_grid.attach (limit_spin, 1, 0, 1, 1);

Subscribers

People subscribed via source and target branches