Merge lp:~vikoadi/audience/fix-1190516 into lp:~audience-members/audience/trunk

Proposed by Danielle Foré
Status: Rejected
Rejected by: Cody Garver
Proposed branch: lp:~vikoadi/audience/fix-1190516
Merge into: lp:~audience-members/audience/trunk
Diff against target: 26 lines (+6/-1)
2 files modified
src/Audience.vala (+5/-0)
src/Widgets/ControlsBar.vala (+1/-1)
To merge this branch: bzr merge lp:~vikoadi/audience/fix-1190516
Reviewer Review Type Date Requested Status
Avi Romanoff (community) Needs Fixing
Cody Garver Needs Fixing
Review via email: mp+220880@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Cody Garver (codygarver) wrote :

Still happens for me if I seek.

Play video > show playlist > seek to some random part of the video > hide playlist > observe the controls remain

review: Needs Fixing
Revision history for this message
Avi Romanoff (aroman) wrote :

also the code style needs to be updated -- there should be a space between } and else and those comments should not be indented. they should be horizontally aligned with video_player.unlock_hide();

review: Needs Fixing
lp:~vikoadi/audience/fix-1190516 updated
339. By Viko Adi Rahmawan

fix code style

Revision history for this message
Viko Adi Rahmawan (vikoadi) wrote :

It seems to be leave_event and enter_event of Clutter.Actor not responsive enough to handle mouse leaving fast enough from the sidebar button, I can do nothing about it. Is there any idea for more sensitive leave_event?
 Audience 3.12 branch doesnt have this issues, so if that branch is going to be merge, there is no reason for fixing this bug.

Revision history for this message
Danielle Foré (danrabbit) wrote :

I agree it's not really worth spending time on this since we'll replace it with the Gtk solution

Revision history for this message
Cody Garver (codygarver) wrote :

Rejected because this was superseded by the gtk 3.12 branch that got merged in trunk

Unmerged revisions

339. By Viko Adi Rahmawan

fix code style

338. By Viko Adi Rahmawan

mae sure we do unlock_hide when mainwindow.focus_in_event dont get called

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'src/Audience.vala'
2--- src/Audience.vala 2014-05-25 13:34:00 +0000
3+++ src/Audience.vala 2014-05-26 17:15:49 +0000
4@@ -471,6 +471,11 @@
5 video_player.lock_hide ();
6
7 return true;
8+ } else if (moving) {
9+ /*make sure we do unlock because sometime main_window dont
10+ get focused, focus_in_event not being called */
11+ video_player.unlock_hide ();
12+ moving = false;
13 }
14 return false;
15 });
16
17=== modified file 'src/Widgets/ControlsBar.vala'
18--- src/Widgets/ControlsBar.vala 2013-05-19 17:10:26 +0000
19+++ src/Widgets/ControlsBar.vala 2014-05-26 17:15:49 +0000
20@@ -134,4 +134,4 @@
21 }
22 }
23
24-}
25+}
26\ No newline at end of file

Subscribers

People subscribed via source and target branches