diff options
author | Philipp Sehmisch <crush@themanaworld.org> | 2009-08-30 16:38:09 +0200 |
---|---|---|
committer | Philipp Sehmisch <crush@themanaworld.org> | 2009-08-30 16:38:09 +0200 |
commit | c9181484b53f5b1a05a8a952f88416fd7d095d67 (patch) | |
tree | 963f93d722714ef4f1def30b439616d9e42b3a7c /src/gui/debugwindow.cpp | |
parent | 4263962e947b4914de8d1750f21cc7cc82567b4d (diff) | |
download | mana-client-c9181484b53f5b1a05a8a952f88416fd7d095d67.tar.gz mana-client-c9181484b53f5b1a05a8a952f88416fd7d095d67.tar.bz2 mana-client-c9181484b53f5b1a05a8a952f88416fd7d095d67.tar.xz mana-client-c9181484b53f5b1a05a8a952f88416fd7d095d67.zip |
Particle count is again displayed properly in debug window (was cut off by layout manager)
Diffstat (limited to 'src/gui/debugwindow.cpp')
-rw-r--r-- | src/gui/debugwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/debugwindow.cpp b/src/gui/debugwindow.cpp index 59c0f254..5705a434 100644 --- a/src/gui/debugwindow.cpp +++ b/src/gui/debugwindow.cpp @@ -51,7 +51,7 @@ DebugWindow::DebugWindow(): mMapLabel = new Label(strprintf(_("Map: %s"), "")); mMinimapLabel = new Label(strprintf(_("Minimap: %s"), "")); mTileMouseLabel = new Label(strprintf(_("Tile: (%d, %d)"), 0, 0)); - mParticleCountLabel = new Label(strprintf(_("Particle count: %d"), 0)); + mParticleCountLabel = new Label(strprintf(_("Particle count: _____"), 0)); place(0, 0, mFPSLabel, 3); place(3, 0, mTileMouseLabel); |