Index: src/plugin/PluginClass.cpp |
=================================================================== |
--- a/src/plugin/PluginClass.cpp |
+++ b/src/plugin/PluginClass.cpp |
@@ -995,7 +995,7 @@ |
#ifdef _DEBUG |
m_nPaneWidth = 70; |
#else |
- m_nPaneWidth = min(rcStatusBar.Height(), 22); |
+ m_nPaneWidth = min(rcStatusBar.Height(), 32); |
#endif |
} |
else |
@@ -1003,7 +1003,7 @@ |
#ifdef _DEBUG |
m_nPaneWidth = 70; |
#else |
- m_nPaneWidth = 22; |
+ m_nPaneWidth = 32; |
#endif |
} |
// Create pane window |
@@ -1621,8 +1621,8 @@ |
int offx = nDrawEdge; |
if (hIcon) |
{ |
- ::DrawIconEx(hDC, offx, (rcClient.Height() - 16)/2 + 2, hIcon, 16, 16, NULL, NULL, DI_NORMAL); |
- offx += 22; |
+ ::DrawIconEx(hDC, offx, 0, hIcon, rcClient.Height() - 2, rcClient.Height() - 2, NULL, NULL, DI_NORMAL); |
+ offx += 32; |
} |
#ifdef _DEBUG |
// Display version |