]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Adjustments to category rendering- left align with colon over servername
authorSamual Lenks <samual@xonotic.org>
Sat, 12 Oct 2013 17:22:16 +0000 (13:22 -0400)
committerSamual Lenks <samual@xonotic.org>
Sat, 12 Oct 2013 17:22:16 +0000 (13:22 -0400)
qcsrc/menu/xonotic/serverlist.c

index 9f987449f33d43a7e81d64d13001a4ce00e0d0ee..27d81ddce7dae675f045b219ad91c160686544ce 100644 (file)
@@ -57,7 +57,7 @@ CLASS(XonoticServerList) EXTENDS(XonoticListBox)
 
        ATTRIB(XonoticServerList, seenIPv4, float, 0)
        ATTRIB(XonoticServerList, seenIPv6, float, 0)
-       ATTRIB(XonoticServerList, categoriesHeight, float, 1.5)
+       ATTRIB(XonoticServerList, categoriesHeight, float, 1.25)
 
        METHOD(XonoticServerList, getTotalHeight, float(entity))
        METHOD(XonoticServerList, getItemAtPos, float(entity, float))
@@ -986,20 +986,24 @@ void XonoticServerList_drawListBoxItem(entity me, float i, vector absSize, float
                {
                        SET_YRANGE(
                                (me.categoriesHeight - 1) / (me.categoriesHeight + 1),
-                               me.categoriesHeight / (me.categoriesHeight + 1));
+                               me.categoriesHeight / (me.categoriesHeight + 1)
+                       );
                        draw_Text(
                                eY * me.realUpperMargin
                                +
+#if 0
                                eX * (me.columnNameOrigin + (me.columnNameSize - draw_TextWidth(catent.cat_string, 0, me.realFontSize)) * 0.5),
                                catent.cat_string,
+#else
+                               eX * (me.columnNameOrigin),
+                               strcat(catent.cat_string, ":"),
+#endif
                                me.realFontSize,
                                '1 1 1',
                                SKINALPHA_TEXT,
                                0
                        );
-                       SET_YRANGE(
-                               me.categoriesHeight / (me.categoriesHeight + 1),
-                               1);
+                       SET_YRANGE(me.categoriesHeight / (me.categoriesHeight + 1), 1);
                }
        }