[ghex] Right-align the labels in the Type Conversion Dialog
- From: Kalev Lember <klember src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [ghex] Right-align the labels in the Type Conversion Dialog
- Date: Tue, 21 Feb 2012 04:50:42 +0000 (UTC)
commit 4d8b8d99365059938a9de729cdc2d10b40ec78d3
Author: Kalev Lember <kalevlember gmail com>
Date: Mon Feb 20 23:14:21 2012 +0200
Right-align the labels in the Type Conversion Dialog
... so that bit numbers are nicely aligned in columns.
src/hex-dialog.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/src/hex-dialog.c b/src/hex-dialog.c
index 0098938..0e83295 100644
--- a/src/hex-dialog.c
+++ b/src/hex-dialog.c
@@ -61,8 +61,8 @@ static struct {
{ N_("Unsigned 16 bit:"), HexConvert_US16 },
{ N_("Signed 32 bit:"), HexConvert_S32 },
{ N_("Unsigned 32 bit:"), HexConvert_US32 },
- { N_("32 bit float:"), HexConvert_32float },
- { N_("64 bit float:"), HexConvert_64float },
+ { N_("Float 32 bit:"), HexConvert_32float },
+ { N_("Float 64 bit:"), HexConvert_64float },
{ N_("Hexadecimal:"), HexConvert_hex },
{ N_("Octal:"), HexConvert_oct },
{ N_("Binary:"), HexConvert_bin }
@@ -133,7 +133,7 @@ static void create_dialog_prop(HexDialogEntryTypes type,
GtkWidget *label;
label = gtk_label_new(_(HexDialogEntries[type].name));
- gtk_misc_set_alignment(GTK_MISC(label), 0.0, 0.5);
+ gtk_misc_set_alignment (GTK_MISC(label), 1.0, 0.5);
gtk_widget_set_hexpand (label, TRUE);
gtk_grid_attach (GTK_GRID (grid), label,
xpos, ypos, 1, 1);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]