Increase of precision of perspective parameters in UI (issue 1781)

pp3 version change to 307
This commit is contained in:
michael
2013-03-16 19:24:25 -04:00
parent 87ffd572b2
commit c32e2fc20a
4 changed files with 16 additions and 9 deletions

View File

@@ -25,10 +25,10 @@ PerspCorrection::PerspCorrection () : Gtk::VBox(), FoldableToolPanel(this) {
set_border_width(4);
horiz = Gtk::manage (new Adjuster (M("TP_PERSPECTIVE_HORIZONTAL"), -100, 100, 1, 0));
horiz = Gtk::manage (new Adjuster (M("TP_PERSPECTIVE_HORIZONTAL"), -100, 100, 0.1, 0));
horiz->setAdjusterListener (this);
vert = Gtk::manage (new Adjuster (M("TP_PERSPECTIVE_VERTICAL"), -100, 100, 1, 0));
vert = Gtk::manage (new Adjuster (M("TP_PERSPECTIVE_VERTICAL"), -100, 100, 0.1, 0));
vert->setAdjusterListener (this);
pack_start (*horiz);