Opened 12 years ago
Closed 12 years ago
#1397 closed Bug (fixed)
Gtk-WARNING when running transmission-1.34
Reported by: | sahak | Owned by: | charles |
---|---|---|---|
Priority: | Normal | Milestone: | 1.40 |
Component: | GTK+ Client | Version: | 1.34 |
Severity: | Minor | Keywords: | |
Cc: |
Description
I get the following warning when running transmission-1.34:
(transmission:5525): Gtk-WARNING : GtkSpinButton?: setting an adjustment with non-zero page size is deprecated
Change History (2)
comment:1 Changed 12 years ago by charles
- Component changed from Transmission to GTK+ Client
- Milestone changed from None Set to 1.40
- Owner set to charles
- Severity changed from Normal to Minor
- Status changed from new to assigned
comment:2 Changed 12 years ago by charles
- Resolution set to fixed
- Status changed from assigned to closed
Note: See
TracTickets for help on using
tickets.
This is fixed in svn trunk for the upcoming 1.40 release.
In 1.34, the bug seems to be in gtk/details.c, lines 1102 and 1115, where gtk_adjustment_new() is called. In both cases, the last argument is the page size, and should be 0 instead of 1.
1.40's code uses gtk_spin_button_new_with_range() instead of dealing with GtkAdjustment? directly.