Search
lxdream.org :: lxdream/src/gui/mmio_win.c :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename src/gui/mmio_win.c
changeset 45:f99236f0632e
prev31:495e480360d7
next57:5648c0e0638b
author nkeynes
date Tue Dec 27 08:41:22 2005 +0000 (18 years ago)
permissions -rw-r--r--
last change Fix output list click
Fix mmr column widths
Fix run-to for ARM
file annotate diff log raw
1.1 --- a/src/gui/mmio_win.c Sun Dec 25 08:24:11 2005 +0000
1.2 +++ b/src/gui/mmio_win.c Tue Dec 27 08:41:22 2005 +0000
1.3 @@ -1,5 +1,5 @@
1.4 /**
1.5 - * $Id: mmio_win.c,v 1.2 2005-12-25 08:24:11 nkeynes Exp $
1.6 + * $Id: mmio_win.c,v 1.3 2005-12-27 08:41:22 nkeynes Exp $
1.7 *
1.8 * Implements the MMIO register viewing window
1.9 *
1.10 @@ -67,10 +67,10 @@
1.11 gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW(scroll),
1.12 GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS );
1.13 list = GTK_CLIST(gtk_clist_new(5));
1.14 - gtk_clist_set_column_width(list, 0, 60);
1.15 - gtk_clist_set_column_width(list, 1, 50);
1.16 - gtk_clist_set_column_width(list, 2, 60);
1.17 - gtk_clist_set_column_width(list, 3, 220);
1.18 + gtk_clist_set_column_width(list, 0, 70);
1.19 + gtk_clist_set_column_width(list, 1, 75);
1.20 + gtk_clist_set_column_width(list, 2, 70);
1.21 + gtk_clist_set_column_width(list, 3, 280);
1.22 gtk_clist_set_column_width(list, 4, 160);
1.23 gtk_clist_set_column_justification(list, 0, GTK_JUSTIFY_CENTER );
1.24 gtk_clist_set_column_justification(list, 2, GTK_JUSTIFY_CENTER );
.