mirror of https://github.com/GNOME/gimp.git
make it work with my modifications of Ben's patch.
2000-10-16 Sven Neumann <sven@gimp.org> * gimp.spec.in: make it work with my modifications of Ben's patch. * modules/cdisplay_gamma.c * modules/cdisplay_highcontrast.c: applied patch by Radim Kolar that initializes the interface of the configure dialogs correctly.
This commit is contained in:
parent
a8e130f532
commit
770e118a92
|
@ -1,3 +1,11 @@
|
|||
2000-10-16 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* gimp.spec.in: make it work with my modifications of Ben's patch.
|
||||
|
||||
* modules/cdisplay_gamma.c
|
||||
* modules/cdisplay_highcontrast.c: applied patch by Radim Kolar that
|
||||
initializes the interface of the configure dialogs correctly.
|
||||
|
||||
2000-10-15 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* libgimp/gimpwidgets.c: gimp_mem_size_entry_new(): fixed typo:
|
||||
|
|
10
gimp.spec.in
10
gimp.spec.in
|
@ -179,11 +179,11 @@ cat gimp-perl gimp-perl-plugin-files > gimp-perl-files
|
|||
%{prefix}/share/gimp/%{subver}/patterns/
|
||||
%{prefix}/share/gimp/%{subver}/scripts/
|
||||
|
||||
%{sysconfdir}/gimp-%{subver}/gimprc
|
||||
%{sysconfdir}/gimp-%{subver}/gimprc_user
|
||||
%{sysconfdir}/gimp-%{subver}/gtkrc
|
||||
%{sysconfdir}/gimp-%{subver}/unitrc
|
||||
%{sysconfdir}/gimp-%{subver}/ps-menurc
|
||||
%{sysconfdir}/gimp/%{subver}/gimprc
|
||||
%{sysconfdir}/gimp/%{subver}/gimprc_user
|
||||
%{sysconfdir}/gimp/%{subver}/gtkrc
|
||||
%{sysconfdir}/gimp/%{subver}/unitrc
|
||||
%{sysconfdir}/gimp/%{subver}/ps-menurc
|
||||
|
||||
%{prefix}/share/gimp/%{subver}/gimp_logo.ppm
|
||||
%{prefix}/share/gimp/%{subver}/gimp_splash.ppm
|
||||
|
|
|
@ -95,9 +95,9 @@ static GimpModuleInfo info =
|
|||
NULL,
|
||||
N_("Gamma color display filter"),
|
||||
"Manish Singh <yosh@gimp.org>",
|
||||
"v0.1",
|
||||
"v0.2",
|
||||
"(c) 1999, released under the GPL",
|
||||
"October 3, 1999"
|
||||
"October 14, 2000"
|
||||
};
|
||||
|
||||
G_MODULE_EXPORT GimpModuleStatus
|
||||
|
@ -345,7 +345,7 @@ gamma_configure (gpointer cd_ID,
|
|||
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 0.5);
|
||||
gtk_box_pack_start (GTK_BOX (hbox), label, TRUE, TRUE, 0);
|
||||
|
||||
adjustment = gtk_adjustment_new (1.0, 0.01, 10.0, 0.01, 0.1, 0.0);
|
||||
adjustment = gtk_adjustment_new (context->gamma, 0.01, 10.0, 0.01, 0.1, 0.0);
|
||||
context->spinner = gtk_spin_button_new (GTK_ADJUSTMENT (adjustment),
|
||||
0.1, 3);
|
||||
gtk_widget_set_usize (context->spinner, 100, 0);
|
||||
|
|
|
@ -95,9 +95,9 @@ static GimpModuleInfo info =
|
|||
NULL,
|
||||
N_("High Contrast color display filter"),
|
||||
"Jay Cox <jaycox@earthlink.net>",
|
||||
"v0.1",
|
||||
"v0.2",
|
||||
"(c) 2000, released under the GPL",
|
||||
"April 28, 2000"
|
||||
"October 14, 2000"
|
||||
};
|
||||
|
||||
G_MODULE_EXPORT GimpModuleStatus
|
||||
|
@ -338,7 +338,7 @@ contrast_configure (gpointer cd_ID,
|
|||
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 0.5);
|
||||
gtk_box_pack_start (GTK_BOX (hbox), label, TRUE, TRUE, 0);
|
||||
|
||||
adjustment = gtk_adjustment_new (4.0, 1.0, 20.0, 0.5, 1.0, 0.0);
|
||||
adjustment = gtk_adjustment_new (context->contrast, 1.0, 20.0, 0.5, 1.0, 0.0);
|
||||
context->spinner = gtk_spin_button_new (GTK_ADJUSTMENT (adjustment),
|
||||
0.1, 3);
|
||||
gtk_widget_set_usize (context->spinner, 100, 0);
|
||||
|
|
Loading…
Reference in New Issue