kicad-developers team mailing list archive
-
kicad-developers team
-
Mailing list archive
-
Message #02373
MacOSX - Pcbnew: Refresh issues with onload (again)
-
To:
kicad-devel@xxxxxxxxxxxxxxx
-
From:
"Marco Serantoni" <marco.serantoni@...>
-
Date:
Thu, 09 Apr 2009 18:01:40 -0000
-
User-agent:
eGroups-EW/0.82
Seems that was changed in the last commit the tracepcb.cpp broking again the refresh of pcbnew under MacOSX.
Index: tracepcb.cpp
===================================================================
--- tracepcb.cpp (revision 1700)
+++ tracepcb.cpp (working copy)
@@ -48,9 +48,9 @@
{
module->Draw( DrawPanel, DC, GR_OR );
}
-
+#ifndef __WXMAC__
UpdateStatusBar();
-
+#endif
if( DrawPanel->ManageCurseur )
DrawPanel->ManageCurseur( DrawPanel, DC, FALSE );
@@ -88,9 +88,9 @@
DrawGeneralRatsnest( DC );
GetScreen()->ClrRefreshReq();
-
+#ifndef __WXMAC__
UpdateStatusBar();
-
+#endif
if( DrawPanel->ManageCurseur )
DrawPanel->ManageCurseur( DrawPanel, DC, FALSE );
Follow ups