]> git.saurik.com Git - wxWidgets.git/commitdiff
OS2 Statusbar fix
authorDavid Webster <Dave.Webster@bhmi.com>
Mon, 18 Dec 2000 05:33:30 +0000 (05:33 +0000)
committerDavid Webster <Dave.Webster@bhmi.com>
Mon, 18 Dec 2000 05:33:30 +0000 (05:33 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8939 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/statusbr.cpp

index c42e2132091818f925c22431499b42035d7dad34..386ba1d251c77f956372c99e278ed234597ca00e 100644 (file)
@@ -184,7 +184,7 @@ void wxStatusBarGeneric::OnPaint(wxPaintEvent& WXUNUSED(event) )
 #ifdef __WXPM__
   wxColour                          vColor;
 
 #ifdef __WXPM__
   wxColour                          vColor;
 
-  vColor.InitFromName("DIM GREY");
+  vColor.InitFromName("GREY");
   ::WinFillRect(dc.m_hPS, &dc.m_vRclPaint, vColor.GetPixel());
 #endif
 
   ::WinFillRect(dc.m_hPS, &dc.m_vRclPaint, vColor.GetPixel());
 #endif
 
@@ -264,21 +264,21 @@ void wxStatusBarGeneric::DrawField(wxDC& dc, int i)
         rect.x + rect.width, rect.y);
 #else
     // Right
         rect.x + rect.width, rect.y);
 #else
     // Right
-    dc.DrawLine(rect.x + rect.width, rect.y - 3,
-                rect.x + rect.width, rect.y + rect.height);
+    dc.DrawLine(rect.x + rect.width, rect.y,
+                rect.x + rect.width, rect.y + rect.height + 2);
     dc.SetPen(m_mediumShadowPen);
     dc.SetPen(m_mediumShadowPen);
-    dc.DrawLine(rect.x + rect.width + 1, rect.y - 3,
-                rect.x + rect.width + 1, rect.y + rect.height);
-    dc.DrawLine(rect.x + rect.width + 2, rect.y - 3,
-                rect.x + rect.width + 2, rect.y + rect.height);
+    dc.DrawLine(rect.x + rect.width + 1, rect.y,
+                rect.x + rect.width + 1, rect.y + rect.height + 2);
+    dc.DrawLine(rect.x + rect.width + 2, rect.y,
+                rect.x + rect.width + 2, rect.y + rect.height + 2);
     // Top
     // Top
-    dc.DrawLine(rect.x + rect.width + 2, rect.y + rect.height + 2,
-                rect.x - 2, rect.y + rect.height + 2);
-    dc.DrawLine(rect.x + rect.width + 1, rect.y + rect.height + 1,
-                rect.x - 2, rect.y + rect.height + 1);
+    dc.DrawLine(rect.x + rect.width + 2, rect.y,
+                rect.x - 2, rect.y);
+    dc.DrawLine(rect.x + rect.width + 1, rect.y - 1,
+                rect.x - 2, rect.y - 1);
     dc.SetPen(m_hilightPen);
     dc.SetPen(m_hilightPen);
-    dc.DrawLine(rect.x + rect.width, rect.y + rect.height,
-                rect.x - 2, rect.y + rect.height);
+    dc.DrawLine(rect.x + rect.width, rect.y - 2,
+                rect.x - 2, rect.y - 2);
 
 #endif
 
 
 #endif