Revision: 2997 http://geany.svn.sourceforge.net/geany/?rev=2997&view=rev Author: eht16 Date: 2008-09-25 17:04:43 +0000 (Thu, 25 Sep 2008)
Log Message: ----------- Set the page_size parameter of GtkAdjustments to 0 instead of 10 which is set by default by Glade. This prevents breakage of spin buttons with early versions of GTK 2.14.
Modified Paths: -------------- trunk/ChangeLog trunk/geany.glade trunk/src/interface.c trunk/src/vte.c
Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2008-09-25 16:55:35 UTC (rev 2996) +++ trunk/ChangeLog 2008-09-25 17:04:43 UTC (rev 2997) @@ -1,3 +1,11 @@ +2008-09-25 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de> + + * geany.glade, src/interface.c, src/vte.c: + Set the page_size parameter of GtkAdjustments to 0 instead + of 10 which is set by default by Glade. This prevents breakage of + spin buttons with early versions of GTK 2.14. + + 2008-09-25 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
* src/filetypes.c:
Modified: trunk/geany.glade =================================================================== --- trunk/geany.glade 2008-09-25 16:55:35 UTC (rev 2996) +++ trunk/geany.glade 2008-09-25 17:04:43 UTC (rev 2997) @@ -5517,7 +5517,7 @@ <property name="update_policy">GTK_UPDATE_IF_VALID</property> <property name="snap_to_ticks">False</property> <property name="wrap">True</property> - <property name="adjustment">1 1 99 1 10 10</property> + <property name="adjustment">1 1 99 1 10 0</property> </widget> <packing> <property name="left_attach">1</property> @@ -5653,7 +5653,7 @@ <property name="update_policy">GTK_UPDATE_IF_VALID</property> <property name="snap_to_ticks">False</property> <property name="wrap">True</property> - <property name="adjustment">8 1 99 1 10 10</property> + <property name="adjustment">8 1 99 1 10 0</property> </widget> <packing> <property name="padding">0</property> @@ -5963,7 +5963,7 @@ <property name="update_policy">GTK_UPDATE_ALWAYS</property> <property name="snap_to_ticks">False</property> <property name="wrap">False</property> - <property name="adjustment">72 3 1000 1 10 10</property> + <property name="adjustment">72 3 1000 1 10 0</property> </widget> <packing> <property name="padding">0</property> @@ -6310,7 +6310,7 @@ <property name="update_policy">GTK_UPDATE_ALWAYS</property> <property name="snap_to_ticks">False</property> <property name="wrap">False</property> - <property name="adjustment">9 1 99 1 10 10</property> + <property name="adjustment">9 1 99 1 10 0</property> </widget> <packing> <property name="left_attach">1</property> @@ -6332,7 +6332,7 @@ <property name="update_policy">GTK_UPDATE_ALWAYS</property> <property name="snap_to_ticks">False</property> <property name="wrap">False</property> - <property name="adjustment">9 1 99 1 10 10</property> + <property name="adjustment">9 1 99 1 10 0</property> </widget> <packing> <property name="left_attach">1</property> @@ -6354,7 +6354,7 @@ <property name="update_policy">GTK_UPDATE_ALWAYS</property> <property name="snap_to_ticks">False</property> <property name="wrap">False</property> - <property name="adjustment">9 1 10000 1 10 10</property> + <property name="adjustment">9 1 10000 1 10 0</property> </widget> <packing> <property name="left_attach">1</property> @@ -6735,7 +6735,7 @@ <property name="update_policy">GTK_UPDATE_ALWAYS</property> <property name="snap_to_ticks">False</property> <property name="wrap">True</property> - <property name="adjustment">72 0 1000 1 10 10</property> + <property name="adjustment">72 0 1000 1 10 0</property> </widget> <packing> <property name="left_attach">1</property> @@ -7457,7 +7457,7 @@ <property name="update_policy">GTK_UPDATE_ALWAYS</property> <property name="snap_to_ticks">False</property> <property name="wrap">True</property> - <property name="adjustment">4 1 50 1 10 10</property> + <property name="adjustment">4 1 50 1 10 0</property> </widget> <packing> <property name="left_attach">1</property> @@ -7508,7 +7508,7 @@ <property name="update_policy">GTK_UPDATE_ALWAYS</property> <property name="snap_to_ticks">False</property> <property name="wrap">True</property> - <property name="adjustment">30 0 10000 1 10 10</property> + <property name="adjustment">30 0 10000 1 10 0</property> </widget> <packing> <property name="left_attach">1</property>
Modified: trunk/src/interface.c =================================================================== --- trunk/src/interface.c 2008-09-25 16:55:35 UTC (rev 2996) +++ trunk/src/interface.c 2008-09-25 17:04:43 UTC (rev 2997) @@ -3626,7 +3626,7 @@ (GtkAttachOptions) (0), 0, 0); gtk_misc_set_alignment (GTK_MISC (label222), 0, 0.5);
- spin_indent_width_adj = gtk_adjustment_new (1, 1, 99, 1, 10, 10); + spin_indent_width_adj = gtk_adjustment_new (1, 1, 99, 1, 10, 0); spin_indent_width = gtk_spin_button_new (GTK_ADJUSTMENT (spin_indent_width_adj), 1, 0); gtk_widget_show (spin_indent_width); gtk_table_attach (GTK_TABLE (table13), spin_indent_width, 1, 2, 0, 1, @@ -3679,7 +3679,7 @@ gtk_widget_show (label221); gtk_box_pack_start (GTK_BOX (hbox13), label221, FALSE, FALSE, 0);
- spin_tab_width_adj = gtk_adjustment_new (8, 1, 99, 1, 10, 10); + spin_tab_width_adj = gtk_adjustment_new (8, 1, 99, 1, 10, 0); spin_tab_width = gtk_spin_button_new (GTK_ADJUSTMENT (spin_tab_width_adj), 1, 0); gtk_widget_show (spin_tab_width); gtk_box_pack_start (GTK_BOX (hbox13), spin_tab_width, TRUE, TRUE, 0); @@ -3762,7 +3762,7 @@ gtk_widget_show (label209); gtk_box_pack_start (GTK_BOX (hbox11), label209, FALSE, FALSE, 0);
- spin_line_break_adj = gtk_adjustment_new (72, 3, 1000, 1, 10, 10); + spin_line_break_adj = gtk_adjustment_new (72, 3, 1000, 1, 10, 0); spin_line_break = gtk_spin_button_new (GTK_ADJUSTMENT (spin_line_break_adj), 1, 0); gtk_widget_show (spin_line_break); gtk_box_pack_start (GTK_BOX (hbox11), spin_line_break, FALSE, TRUE, 0); @@ -3852,7 +3852,7 @@ (GtkAttachOptions) (0), 0, 0); gtk_misc_set_alignment (GTK_MISC (label205), 0, 0.5);
- spin_symbol_complete_chars_adj = gtk_adjustment_new (9, 1, 99, 1, 10, 10); + spin_symbol_complete_chars_adj = gtk_adjustment_new (9, 1, 99, 1, 10, 0); spin_symbol_complete_chars = gtk_spin_button_new (GTK_ADJUSTMENT (spin_symbol_complete_chars_adj), 1, 0); gtk_widget_show (spin_symbol_complete_chars); gtk_table_attach (GTK_TABLE (table14), spin_symbol_complete_chars, 1, 2, 0, 1, @@ -3861,7 +3861,7 @@ gtk_tooltips_set_tip (tooltips, spin_symbol_complete_chars, _("The amount of characters which are necessary to show the symbol auto completion list."), NULL); gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (spin_symbol_complete_chars), TRUE);
- spin_symbollistheight_adj = gtk_adjustment_new (9, 1, 99, 1, 10, 10); + spin_symbollistheight_adj = gtk_adjustment_new (9, 1, 99, 1, 10, 0); spin_symbollistheight = gtk_spin_button_new (GTK_ADJUSTMENT (spin_symbollistheight_adj), 1, 0); gtk_widget_show (spin_symbollistheight); gtk_table_attach (GTK_TABLE (table14), spin_symbollistheight, 1, 2, 1, 2, @@ -3870,7 +3870,7 @@ gtk_tooltips_set_tip (tooltips, spin_symbollistheight, _("Display height in rows for the auto completion list."), NULL); gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (spin_symbollistheight), TRUE);
- spin_autocompletion_max_entries_adj = gtk_adjustment_new (9, 1, 10000, 1, 10, 10); + spin_autocompletion_max_entries_adj = gtk_adjustment_new (9, 1, 10000, 1, 10, 0); spin_autocompletion_max_entries = gtk_spin_button_new (GTK_ADJUSTMENT (spin_autocompletion_max_entries_adj), 1, 0); gtk_widget_show (spin_autocompletion_max_entries); gtk_table_attach (GTK_TABLE (table14), spin_autocompletion_max_entries, 1, 2, 2, 3, @@ -3981,7 +3981,7 @@ gtk_tooltips_set_tip (tooltips, long_line_color, _("Sets the color of the long line marker"), NULL); gtk_color_button_set_title (GTK_COLOR_BUTTON (long_line_color), _("Color Chooser"));
- spin_long_line_adj = gtk_adjustment_new (72, 0, 1000, 1, 10, 10); + spin_long_line_adj = gtk_adjustment_new (72, 0, 1000, 1, 10, 0); spin_long_line = gtk_spin_button_new (GTK_ADJUSTMENT (spin_long_line_adj), 1, 0); gtk_widget_show (spin_long_line); gtk_table_attach (GTK_TABLE (table7), spin_long_line, 1, 2, 1, 2, @@ -4208,7 +4208,7 @@ gtk_misc_set_alignment (GTK_MISC (label147), 0, 0.5); gtk_misc_set_padding (GTK_MISC (label147), 0, 7);
- spin_mru_adj = gtk_adjustment_new (4, 1, 50, 1, 10, 10); + spin_mru_adj = gtk_adjustment_new (4, 1, 50, 1, 10, 0); spin_mru = gtk_spin_button_new (GTK_ADJUSTMENT (spin_mru_adj), 1, 0); gtk_widget_show (spin_mru); gtk_table_attach (GTK_TABLE (table10), spin_mru, 1, 2, 0, 1, @@ -4225,7 +4225,7 @@ (GtkAttachOptions) (0), 0, 0); gtk_misc_set_alignment (GTK_MISC (label208), 0, 0.5);
- spin_disk_check_adj = gtk_adjustment_new (30, 0, 10000, 1, 10, 10); + spin_disk_check_adj = gtk_adjustment_new (30, 0, 10000, 1, 10, 0); spin_disk_check = gtk_spin_button_new (GTK_ADJUSTMENT (spin_disk_check_adj), 1, 0); gtk_widget_show (spin_disk_check); gtk_table_attach (GTK_TABLE (table10), spin_disk_check, 1, 2, 1, 2,
Modified: trunk/src/vte.c =================================================================== --- trunk/src/vte.c 2008-09-25 16:55:35 UTC (rev 2996) +++ trunk/src/vte.c 2008-09-25 17:04:43 UTC (rev 2997) @@ -749,7 +749,7 @@ (GtkAttachOptions) (0), 0, 0); gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
- spin_scrollback_adj = gtk_adjustment_new(500, 0, 5000, 1, 10, 10); + spin_scrollback_adj = gtk_adjustment_new(500, 0, 5000, 1, 10, 0); spin_scrollback = gtk_spin_button_new(GTK_ADJUSTMENT(spin_scrollback_adj), 1, 0); gtk_table_attach(GTK_TABLE(table), spin_scrollback, 1, 2, 3, 4, (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.