diff options
author | Timothy Pearson <[email protected]> | 2013-12-22 18:14:55 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-12-22 18:14:55 -0600 |
commit | a90aa09722d47f5f4009b089d8d874354899bdb8 (patch) | |
tree | 42b89b909552fb57ae2bb5ff39a5d715bdadee26 /src/qt_qt_wrapper.cpp | |
parent | 6e6dbb068e03a8bb818a76ba774d6f94ade7389f (diff) | |
download | gtk-qt-engine-a90aa09722d47f5f4009b089d8d874354899bdb8.tar.gz gtk-qt-engine-a90aa09722d47f5f4009b089d8d874354899bdb8.zip |
Fix Firefox scrollbars
Diffstat (limited to 'src/qt_qt_wrapper.cpp')
-rw-r--r-- | src/qt_qt_wrapper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt_qt_wrapper.cpp b/src/qt_qt_wrapper.cpp index 928aef3..eebcc93 100644 --- a/src/qt_qt_wrapper.cpp +++ b/src/qt_qt_wrapper.cpp @@ -2098,7 +2098,7 @@ void setRcProperties(GtkRcStyle* rc_style, int forceRecreate) stream << parse_rc_string("GtkScrollbar::stepper-size = " + TQString::number(tqApp->style().querySubControlMetrics(TQStyle::CC_ScrollBar, &sbar, TQStyle::SC_ScrollBarSubLine).width() - 1), "*"); stream << parse_rc_string("GtkScrollbar::min-slider-length = " + TQString::number(tqApp->style().pixelMetric(TQStyle::PM_ScrollBarSliderMin)), "*"); - stream << parse_rc_string("GtkScrollbar::slider-width = " + TQString::number(tqApp->style().pixelMetric(TQStyle::PM_ScrollBarExtent)-2), "*"); + stream << parse_rc_string("GtkScrollbar::slider-width = " + TQString::number(tqApp->style().pixelMetric(TQStyle::PM_ScrollBarExtent)), "*"); stream << parse_rc_string("GtkButton::child-displacement-x = " + TQString::number(tqApp->style().pixelMetric(TQStyle::PM_ButtonShiftHorizontal)), "*"); stream << parse_rc_string("GtkButton::child-displacement-y = " + TQString::number(tqApp->style().pixelMetric(TQStyle::PM_ButtonShiftVertical)), "*"); |