mirror of
https://github.com/edubart/otclient.git
synced 2025-10-17 04:53:27 +02:00
Fix minimap zoom, blue name
This commit is contained in:
@@ -263,7 +263,6 @@ void Creature::drawInformation(const Point& point, bool useGray, const Rect& par
|
||||
else
|
||||
g_painter->setColor(fillColor);
|
||||
|
||||
g_painter->setColor(fillColor);
|
||||
g_painter->drawFilledRect(healthRect);
|
||||
|
||||
m_nameCache.draw(textRect);
|
||||
|
@@ -33,8 +33,8 @@ public:
|
||||
|
||||
void drawSelf(Fw::DrawPane drawPane);
|
||||
|
||||
bool zoomIn() { return setZoom(m_zoom-1); }
|
||||
bool zoomOut() { return setZoom(m_zoom+1); }
|
||||
bool zoomIn() { return setZoom(m_zoom+1); }
|
||||
bool zoomOut() { return setZoom(m_zoom-1); }
|
||||
|
||||
bool setZoom(int zoom);
|
||||
void setMinZoom(int minZoom) { m_minZoom = minZoom; }
|
||||
|
Reference in New Issue
Block a user