This is an automatic generated email to let you know that the following patch were queued at the http://git.linuxtv.org/v4l-utils.git tree:
Subject: qv4l2: QSpinBox should honor the control's step value. Author: Hans Verkuil <[email protected]> Date: Sun Apr 29 13:07:44 2012 +0200 Signed-off-by: Hans Verkuil <[email protected]> utils/qv4l2/ctrl-tab.cpp | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) --- http://git.linuxtv.org/v4l-utils.git?a=commitdiff;h=e9e0123f8a94ff1f6a60cd2db93335dcf9532250 diff --git a/utils/qv4l2/ctrl-tab.cpp b/utils/qv4l2/ctrl-tab.cpp index 114d593..487bf68 100644 --- a/utils/qv4l2/ctrl-tab.cpp +++ b/utils/qv4l2/ctrl-tab.cpp @@ -234,6 +234,7 @@ void ApplicationWindow::addCtrl(QGridLayout *grid, const v4l2_queryctrl &qctrl) m_widgetMap[qctrl.id] = spin = new QSpinBox(p); spin->setMinimum(qctrl.minimum); spin->setMaximum(qctrl.maximum); + spin->setSingleStep(qctrl.step); addWidget(grid, m_widgetMap[qctrl.id]); connect(m_widgetMap[qctrl.id], SIGNAL(valueChanged(int)), m_sigMapper, SLOT(map())); _______________________________________________ linuxtv-commits mailing list [email protected] http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits
