From 53f19576d6d573c0be3ac4f6aa8f291f931951a2 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Sat, 21 Jan 2012 14:32:35 +0000 Subject: [PATCH] i3-config-wizard: Mark the currently selected modifier with an arrow (Thanks jjfoerch) Boldface seems to be unrecognizable on some systems. Fixes #607 --- i3-config-wizard/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/i3-config-wizard/main.c b/i3-config-wizard/main.c index ac596024..63ebbfa5 100644 --- a/i3-config-wizard/main.c +++ b/i3-config-wizard/main.c @@ -2,7 +2,7 @@ * vim:ts=4:sw=4:expandtab * * i3 - an improved dynamic tiling window manager - * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE) + * © 2009-2012 Michael Stapelberg and contributors (see also: LICENSE) * * i3-config-wizard: Program to convert configs using keycodes to configs using * keysyms. @@ -155,8 +155,8 @@ static int handle_expose() { set_font(&bold_font); set_font_colors(pixmap_gc, get_colorpixel("#FFFFFF"), get_colorpixel("#000000")); if (modifier == MOD_Mod4) - txt(31, 4, ""); - else txt(31, 5, ""); + txt(10, 4, "-> "); + else txt(10, 5, "-> "); /* green */ set_font(&font); -- 2.39.5