[xiph-commits] r18419 - trunk/spectrum
xiphmont at svn.xiph.org
xiphmont at svn.xiph.org
Tue Jun 19 22:40:47 PDT 2012
Author: xiphmont
Date: 2012-06-19 22:40:47 -0700 (Tue, 19 Jun 2012)
New Revision: 18419
Modified:
trunk/spectrum/spec_panel.c
trunk/spectrum/version.h
Log:
correct minor layout mistake in spec_panel (top labels could overlap)
Modified: trunk/spectrum/spec_panel.c
===================================================================
--- trunk/spectrum/spec_panel.c 2012-06-20 05:39:08 UTC (rev 18418)
+++ trunk/spectrum/spec_panel.c 2012-06-20 05:40:47 UTC (rev 18419)
@@ -746,7 +746,7 @@
snprintf(buf,80,"%d",blocksize);
GtkWidget *text4=gtk_label_new(buf);
- gtk_table_attach(GTK_TABLE (lefttable), al,0,1,1,2,GTK_FILL,GTK_FILL,0,0);
+ gtk_table_attach(GTK_TABLE (lefttable), al,1,2,1,2,GTK_FILL,GTK_FILL,0,0);
gtk_container_add(GTK_CONTAINER (al),box);
gtk_box_pack_end(GTK_BOX(box),text4,0,0,0);
@@ -763,7 +763,7 @@
/* add the spectrum plot box */
plot=plot_new();
- gtk_table_attach_defaults (GTK_TABLE (lefttable), plot,0,1,2,3);
+ gtk_table_attach_defaults (GTK_TABLE (lefttable), plot,0,2,2,3);
gtk_table_set_row_spacing (GTK_TABLE (lefttable), 2, 4);
//gtk_table_set_col_spacing (GTK_TABLE (lefttable), 0, 2);
Modified: trunk/spectrum/version.h
===================================================================
--- trunk/spectrum/version.h 2012-06-20 05:39:08 UTC (rev 18418)
+++ trunk/spectrum/version.h 2012-06-20 05:40:47 UTC (rev 18419)
@@ -1,2 +1,2 @@
#define VERSION "$Id$ "
-/* DO NOT EDIT: Automated versioning hack [Wed Jun 20 01:38:04 EDT 2012] */
+/* DO NOT EDIT: Automated versioning hack [Wed Jun 20 01:39:44 EDT 2012] */
More information about the commits
mailing list