Fix #3399 by always calling UpdateViewerMouseover
This commit is contained in:
parent
cdeec7cfb4
commit
256a8617e9
|
@ -319,6 +319,11 @@ namespace BizHawk.Client.EmuHawk
|
||||||
SyncColorSelection();
|
SyncColorSelection();
|
||||||
RenderView();
|
RenderView();
|
||||||
RenderPalette();
|
RenderPalette();
|
||||||
|
|
||||||
|
var viewerMousePosition = viewer.PointToClient(Cursor.Position);
|
||||||
|
if (viewer.ClientRectangle.Contains(viewerMousePosition))
|
||||||
|
UpdateViewerMouseover(viewerMousePosition); // ensure everything is in the correct state if the mouse is currently hovering the viewer
|
||||||
|
|
||||||
RenderTileView();
|
RenderTileView();
|
||||||
//these are likely to be changing all the time
|
//these are likely to be changing all the time
|
||||||
UpdateColorDetails();
|
UpdateColorDetails();
|
||||||
|
|
Loading…
Reference in New Issue