Re: [cssed-devel] cssed 0.3.0 release: arrows for browsing multiple files
Brought to you by:
iagorubio
From: <mic...@ea...> - 2004-09-27 02:51:26
|
Le 26 sept. 2004, =E0 11:31, Iago Rubio a =E9crit : > On Sun, 2004-09-26 at 05:23, Mich=E8le Garoche wrote: >> I've just noticed a change in notebook editor concerning the little >> left and right arrows to navigate the documents. In previous version, >> there were grouped together at the right end, which was very >> convenient; now, there are separated, one at the left end, the other >> one at the right end, which leads to unneeded mouse moves. > I've mde no changes regarding the notebook in the code (??) >> Is this a change in the code or is this a change in the gtk API? > May be you upgraded your Gtk to 2.4 ? Yes, it was upgraded to 2.4.9, by the way this change is a backwards=20 change for me. It seems that it is a style property: has_secondary_backward_stepper,=20 has_secondary_forward_stepper introduced in gtk 2.4 and set to false by=20= default, truly stupid first to put it as style property, hence not=20 changeable within a given application, second to set it as false by=20 default. And after browsing the gtk code, I've seen that first the parameter is=20= only readable, second there is a bug in the name of one of those=20 parameters. gtk_widget_class_install_style_property (widget_class, g_param_spec_boolean = ("has_secondary backward_stepper", = P_("Secondary backward stepper"), = P_("Display a second backward arrow button on the opposite end=20 of the tab area"), FALSE, =09 = G_PARAM_READABLE)); See a _ is missing in the second parameter, so it's likely not to work. Mich=E8le <http://micmacfr.homeunix.org> |