Skip to content

Commit

Permalink
Fix Wave Launcher height restriction
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Palmer committed Sep 16, 2012
1 parent 044e56b commit 87c539c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Src/base/SystemUiController.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ bool SystemUiController::handleMouseEvent(QMouseEvent *event)
{
if(!OverlayWindowManager::systemActiveInstance()->dockInAnimation())
{
yDown = max(yDown, m_uiWidth/4);
yDown = max(yDown, m_uiHeight/3);
OverlayWindowManager::systemActiveInstance()->animateWaveDock(QPoint(xDown - (m_uiWidth/2),yDown - (m_uiHeight/2) - 16));
return true;
}
Expand Down

0 comments on commit 87c539c

Please sign in to comment.