mirror of https://github.com/GNOME/gimp.git
the "blue" variable should not be connected to the "red" adjustment
2000-01-30 Michael Natterer <mitch@gimp.org> * plug-ins/FractalExplorer/Dialogs.c: the "blue" variable should not be connected to the "red" adjustment (Thanks to Peter Kmpf <pkaempf@box.echo.ch>), fixed the initial size of the "number of colors" preview.
This commit is contained in:
parent
497ba1ecc0
commit
c81391e964
|
@ -1,3 +1,10 @@
|
||||||
|
2000-01-30 Michael Natterer <mitch@gimp.org>
|
||||||
|
|
||||||
|
* plug-ins/FractalExplorer/Dialogs.c: the "blue" variable should
|
||||||
|
not be connected to the "red" adjustment (Thanks to Peter Kämpf
|
||||||
|
<pkaempf@box.echo.ch>), fixed the initial size of the "number of
|
||||||
|
colors" preview.
|
||||||
|
|
||||||
2000-01-30 Michael Natterer <mitch@gimp.org>
|
2000-01-30 Michael Natterer <mitch@gimp.org>
|
||||||
|
|
||||||
* plug-ins/FractalExplorer/*:
|
* plug-ins/FractalExplorer/*:
|
||||||
|
|
|
@ -699,7 +699,7 @@ explorer_dialog (void)
|
||||||
_("Blue:"), SCALE_WIDTH, 0,
|
_("Blue:"), SCALE_WIDTH, 0,
|
||||||
wvals.bluestretch, 0, 1, 0.01, 0.1, 2,
|
wvals.bluestretch, 0, 1, 0.01, 0.1, 2,
|
||||||
_("Change the intensity of the blue channel"), NULL);
|
_("Change the intensity of the blue channel"), NULL);
|
||||||
gtk_signal_connect (GTK_OBJECT (elements->red), "value_changed",
|
gtk_signal_connect (GTK_OBJECT (elements->blue), "value_changed",
|
||||||
GTK_SIGNAL_FUNC (explorer_double_adjustment_update),
|
GTK_SIGNAL_FUNC (explorer_double_adjustment_update),
|
||||||
&wvals.bluestretch);
|
&wvals.bluestretch);
|
||||||
|
|
||||||
|
@ -902,9 +902,9 @@ explorer_dialog (void)
|
||||||
{
|
{
|
||||||
gint xsize, ysize;
|
gint xsize, ysize;
|
||||||
|
|
||||||
for (ysize = 1; ysize * ysize * ysize < wvals.ncolors; ysize++) /**/;
|
for (ysize = 1; ysize * ysize * ysize < 8192; ysize++) /**/;
|
||||||
xsize = wvals.ncolors / ysize;
|
xsize = wvals.ncolors / ysize;
|
||||||
while (xsize * ysize < wvals.ncolors) xsize++;
|
while (xsize * ysize < 8192) xsize++;
|
||||||
|
|
||||||
gtk_widget_set_usize (abox, xsize, ysize * 4);
|
gtk_widget_set_usize (abox, xsize, ysize * 4);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue