Skip to content

Commit

Permalink
Merge pull request jp9000#439 from hwdro/master
Browse files Browse the repository at this point in the history
UI: Fix global source visual indicator drawing bug.
  • Loading branch information
jp9000 committed Apr 30, 2015
2 parents 897700b + 8cc2a21 commit d3fb966
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/WindowStuff.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4085,8 +4085,8 @@ LRESULT CALLBACK OBS::OBSProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lPa
iconRect.top = textRect.top + 2;
iconRect.bottom = textRect.bottom - 2;

gsVIRect.left = 1;
gsVIRect.right = 2;
gsVIRect.left = itemRect.left + 1;
gsVIRect.right = itemRect.left + 2;
gsVIRect.top = iconRect.top + 1;
gsVIRect.bottom = iconRect.bottom - 1;

Expand Down

0 comments on commit d3fb966

Please sign in to comment.