From 1b20de5ae43e6aa4350c0b6b3d2d7a5edcd431b2 Mon Sep 17 00:00:00 2001 Message-Id: <1b20de5ae43e6aa4350c0b6b3d2d7a5edcd431b2.1714098056.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sun, 20 Apr 2008 14:31:20 +0100 Subject: [PATCH] Hack to align rights check buttons. They're still not aligned with the entry widgets above, but this is still an improvement over what went before. Organization: Straylight/Edgeware From: Richard Kettlewell --- disobedience/users.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/disobedience/users.c b/disobedience/users.c index d162e14..ee9c16d 100644 --- a/disobedience/users.c +++ b/disobedience/users.c @@ -196,7 +196,7 @@ static void users_add_right(const char *title, GtkWidget **checkp = &users_details_rights[leftmost_bit(right)]; if(!(check = *checkp)) { - *checkp = check = gtk_check_button_new(); + *checkp = check = gtk_check_button_new_with_label(""); users_detail_generic(title, check); } gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(check), !!(value & right)); -- [mdw]