Allow indents to be negative. (#Bug 434308)

2007-04-30  Matthias Clasen  <mclasen@redhat.com>

        * gtk/gtktextview.c: Allow indents to be negative.  (#Bug 434308)


svn path=/trunk/; revision=17736
This commit is contained in:
Matthias Clasen 2007-04-30 15:17:45 +00:00 committed by Matthias Clasen
parent 1a3b0b486c
commit d2ab216455
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2007-04-30 Matthias Clasen <mclasen@redhat.com>
* gtk/gtktextview.c: Allow indents to be negative. (#Bug 434308)
2007-04-30 Michael Natterer <mitch@imendio.com>
* gtk/gtkmenushell.c (gtk_menu_shell_enter_notify): pop up the

View File

@ -603,7 +603,7 @@ gtk_text_view_class_init (GtkTextViewClass *klass)
g_param_spec_int ("indent",
P_("Indent"),
P_("Amount to indent the paragraph, in pixels"),
0,
G_MININT,
G_MAXINT,
0,
GTK_PARAM_READWRITE));