ui: fix the bug on the key window controller
authorJihye Won <jihye.won1@samsung.com>
Tue, 7 Jul 2015 05:30:32 +0000 (14:30 +0900)
committerSeokYeon Hwang <syeon.hwang@samsung.com>
Tue, 7 Jul 2015 13:21:07 +0000 (22:21 +0900)
I fixed the bug that disappears the button
of the scroll bar on the key window controller.

Change-Id: I7cf591b608adf02347d3537209b2da5b9ec403df
Signed-off-by: Jihye Won <jihye.won1@samsung.com>
tizen/src/ui/controller/generalpurposecon.cpp

index 79dbe625c951f62f252d3512345e79323adc5b23..67e60d30c0c19eced920b0d61b952533709b1964 100644 (file)
@@ -88,21 +88,33 @@ void GeneralPurposeCon::createItems(QList<HardwareKey *> keyList, QSize size)
         "QScrollBar::sub-line:vertical {"
             "background: url(\":images/controller-skin/scroll_button_up_normal.png\");"
             "border-width: 0px;"
+            "height: 14px;"
+            "width: 14px;"
         "}"
         "QScrollBar::sub-line:vertical:hover {"
             "background: url(\":images/controller-skin/scroll_button_up_hover.png\");"
+            "height: 14px;"
+            "width: 14px;"
         "}"
         "QScrollBar::sub-line:vertical:pressed {"
             "background: url(\":images/controller-skin/scroll_button_up_pushed.png\");"
+            "height: 14px;"
+            "width: 14px;"
         "}"
         "QScrollBar::add-line:vertical {"
             "background: url(\":images/controller-skin/scroll_button_down_normal.png\");"
+            "height: 14px;"
+            "width: 14px;"
         "}"
         "QScrollBar::add-line:vertical:hover {"
             "background: url(\":images/controller-skin/scroll_button_down_hover.png\");"
+            "height: 14px;"
+            "width: 14px;"
         "}"
         "QScrollBar::add-line:vertical:pressed {"
             "background: url(\":images/controller-skin/scroll_button_down_pushed.png\");"
+            "height: 14px;"
+            "width: 14px;"
         "}"
         );