Merge lp:~philip.scott/audience/fix-stay-on-top into lp:~audience-members/audience/trunk

Proposed by Felipe Escoto
Status: Merged
Approved by: Cody Garver
Approved revision: 634
Merged at revision: 635
Proposed branch: lp:~philip.scott/audience/fix-stay-on-top
Merge into: lp:~audience-members/audience/trunk
Diff against target: 13 lines (+4/-0)
1 file modified
src/Window.vala (+4/-0)
To merge this branch: bzr merge lp:~philip.scott/audience/fix-stay-on-top
Reviewer Review Type Date Requested Status
Audience Members Pending
Review via email: mp+303727@code.launchpad.net

Commit message

Fix stay-on-top not applying when a video first starts

Description of the change

The stay on top while playing feature didn't work when you first started a video, this fixes it

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/Window.vala'
2--- src/Window.vala 2016-08-08 17:08:44 +0000
3+++ src/Window.vala 2016-08-23 19:19:24 +0000
4@@ -333,5 +333,9 @@
5 if (is_maximized) {
6 fullscreen ();
7 }
8+
9+ if (settings.stay_on_top && !settings.playback_wait) {
10+ set_keep_above (true);
11+ }
12 }
13 }

Subscribers

People subscribed via source and target branches