Merge lp:~njpatel/unity/fix-dash-renderering-on-maximised into lp:unity

Proposed by Neil J. Patel
Status: Merged
Merge reported by: Neil J. Patel
Merged at revision: not available
Proposed branch: lp:~njpatel/unity/fix-dash-renderering-on-maximised
Merge into: lp:unity
Diff against target: 12 lines (+1/-1)
1 file modified
dash/DashView.cpp (+1/-1)
To merge this branch: bzr merge lp:~njpatel/unity/fix-dash-renderering-on-maximised
Reviewer Review Type Date Requested Status
Brandon Schaefer (community) Approve
Jay Taoko (community) Approve
Review via email: mp+125367@code.launchpad.net

Commit message

Fixes rendering of Dash in maximised mode with redirected textures by using same code-paths as the restored Dash mode.

Description of the change

Fixes rendering of Dash in maximised mode with redirected textures by using same code-paths as the restored Dash mode.

To post a comment you must log in.
Revision history for this message
Jay Taoko (jaytaoko) :
review: Approve
Revision history for this message
Brandon Schaefer (brandontschaefer) wrote :

Confirmed fixed as well...(This branch didn't show up in my email!!) +1

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'dash/DashView.cpp'
2--- dash/DashView.cpp 2012-09-19 13:58:01 +0000
3+++ dash/DashView.cpp 2012-09-19 23:00:26 +0000
4@@ -495,7 +495,7 @@
5
6 void DashView::Draw(nux::GraphicsEngine& graphics_engine, bool force_draw)
7 {
8- renderer_.DrawFull(graphics_engine, content_geo_, GetAbsoluteGeometry(), GetGeometry());
9+ renderer_.DrawFull(graphics_engine, content_geo_, GetAbsoluteGeometry(), GetGeometry(), true);
10 }
11
12 void DashView::DrawContent(nux::GraphicsEngine& graphics_engine, bool force_draw)