Skip to content

Commit

Permalink
disabled 2-pass rendering also affect color correction
Browse files Browse the repository at this point in the history
  • Loading branch information
nadvornik committed Apr 4, 2009
1 parent 71cf89d commit 7ba4f8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pixbuf-renderer.c
Original file line number Diff line number Diff line change
Expand Up @@ -2826,7 +2826,7 @@ static gboolean pr_queue_draw_idle_cb(gpointer data)
if (pr->draw_queue)
{
qd = pr->draw_queue->data;
fast = ((pr->zoom_2pass && pr->zoom_quality != GDK_INTERP_NEAREST && pr->scale != 1.0) || pr->post_process_slow);
fast = (pr->zoom_2pass && ((pr->zoom_quality != GDK_INTERP_NEAREST && pr->scale != 1.0) || pr->post_process_slow));
}
else
{
Expand Down
2 changes: 1 addition & 1 deletion src/preferences.c
Original file line number Diff line number Diff line change
Expand Up @@ -978,7 +978,7 @@ static void config_tab_image(GtkWidget *notebook)
table = pref_table_new(group, 2, 1, FALSE, FALSE);
add_quality_menu(table, 0, 0, _("Quality:"), options->image.zoom_quality, &c_options->image.zoom_quality);

pref_checkbox_new_int(group, _("Two pass zooming"),
pref_checkbox_new_int(group, _("Two pass rendering (apply HQ zoom and color correction in second pass)"),
options->image.zoom_2pass, &c_options->image.zoom_2pass);

pref_checkbox_new_int(group, _("Allow enlargement of image for zoom to fit"),
Expand Down

0 comments on commit 7ba4f8b

Please sign in to comment.