Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions UnityRiftGUI/UnityRiftGUIForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -783,6 +783,13 @@ private void tabPageSelected(object sender, TabControlEventArgs e)
break;
case 1:
assetListView.Select();
// The virtual list is double-buffered (LVS_EX_DOUBLEBUFFER); when its tab is
// hidden and shown again the stale back buffer is blitted and rows only paint
// where the mouse later invalidates. Force a full repaint on re-entry.
assetListView.Invalidate();
break;
case 2:
classesListView.Invalidate(); // same double-buffer redraw fix for Asset Classes
break;
case 3:
dotnetTreeView?.Select();
Expand Down
Loading