Print preview: remove a couple calls to gtk_adjustment_value_changed (#296)

This function is no longer needed as the "value-changed" signal is
automatically emitted whenever the value changes (since Gtk 3.18).
This commit is contained in:
Stephen Collins 2019-05-08 03:29:29 -06:00 committed by JosephMcc
parent 612f36cea9
commit 15ec9b4e65
1 changed files with 0 additions and 3 deletions

View File

@ -924,9 +924,6 @@ preview_layout_key_press (GtkWidget *widget,
{
gtk_adjustment_set_value (hadj, x);
gtk_adjustment_set_value (vadj, y);
gtk_adjustment_value_changed (hadj);
gtk_adjustment_value_changed (vadj);
}
return ret;