Minimalistic change to the interface, makes it's possible to set the

channel opacity to 100.0% (always stooped at 99.0% before).


--Sven
This commit is contained in:
Sven Neumann 1998-05-02 22:28:50 +00:00
parent 5c25e8e5c5
commit df6cae0d74
3 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
Sun May 3 00:24:31 MEST 1998 Sven Neumann <sven@gimp.org>
* app/channels_dialog.c: minimalistic change to the interface,
make it's possible to set the channel opacity to 100.0%
(was 99.0% before)
Sat May 2 14:31:46 PDT 1998 Manish Singh <yosh@gimp.org>
* app/about_dialog.c

View File

@ -2014,7 +2014,7 @@ channels_dialog_edit_channel_query (ChannelWidget *channel_widget)
gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
gtk_widget_show (label);
opacity_scale_data = gtk_adjustment_new (options->opacity, 0.0, 100.0, 1.0, 1.0, 1.0);
opacity_scale_data = gtk_adjustment_new (options->opacity, 0.0, 100.0, 1.0, 1.0, 0.0);
opacity_scale = gtk_hscale_new (GTK_ADJUSTMENT (opacity_scale_data));
gtk_box_pack_start (GTK_BOX (hbox), opacity_scale, TRUE, TRUE, 0);
gtk_scale_set_value_pos (GTK_SCALE (opacity_scale), GTK_POS_TOP);

View File

@ -2014,7 +2014,7 @@ channels_dialog_edit_channel_query (ChannelWidget *channel_widget)
gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
gtk_widget_show (label);
opacity_scale_data = gtk_adjustment_new (options->opacity, 0.0, 100.0, 1.0, 1.0, 1.0);
opacity_scale_data = gtk_adjustment_new (options->opacity, 0.0, 100.0, 1.0, 1.0, 0.0);
opacity_scale = gtk_hscale_new (GTK_ADJUSTMENT (opacity_scale_data));
gtk_box_pack_start (GTK_BOX (hbox), opacity_scale, TRUE, TRUE, 0);
gtk_scale_set_value_pos (GTK_SCALE (opacity_scale), GTK_POS_TOP);