From: terencehill Date: Thu, 9 Jun 2011 18:57:42 +0000 (+0200) Subject: Fix screenshots list vertical size X-Git-Tag: xonotic-v0.8.0~139^2~1^2~155^2~37 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=257fe91e5cb0d3ab0bc279b71d8e1cbb70d336e5;p=xonotic%2Fxonotic-data.pk3dir.git Fix screenshots list vertical size --- diff --git a/qcsrc/menu/xonotic/dialog_multiplayer_screenshot.c b/qcsrc/menu/xonotic/dialog_multiplayer_screenshot.c index 6ea1f5504..2b3a1a26a 100644 --- a/qcsrc/menu/xonotic/dialog_multiplayer_screenshot.c +++ b/qcsrc/menu/xonotic/dialog_multiplayer_screenshot.c @@ -35,7 +35,7 @@ void XonoticScreenshotBrowserTab_fill(entity me) { entity e, btn, slist; slist = makeXonoticScreenshotList(); - const float slist_height = me.rows - 1; + const float slist_height = me.rows - 2; me.TR(me); me.TD(me, 1, 0.5, e = makeXonoticTextLabel(0, "Filter:")); me.TD(me, 1, 0.5, btn = makeXonoticButton("Clear", '0 0 0'));