diff options
| author | Stanislaw Halik <sthalik@misaki.pl> | 2016-07-31 10:24:44 +0200 | 
|---|---|---|
| committer | Stanislaw Halik <sthalik@misaki.pl> | 2016-07-31 10:24:44 +0200 | 
| commit | 149870c9707600fc229e8a923f01f66be5077492 (patch) | |
| tree | 78dd8d19a14fed250d54a1297b16c7644b62460c | |
| parent | 1310bdd95e3ba4ed86281f5cc4ab01b34427d833 (diff) | |
gui: make mapping background color apply only to tab content
| -rw-r--r-- | gui/mapping.ui | 21 | 
1 files changed, 18 insertions, 3 deletions
| diff --git a/gui/mapping.ui b/gui/mapping.ui index 75c32e27..c0966909 100644 --- a/gui/mapping.ui +++ b/gui/mapping.ui @@ -38,9 +38,6 @@    <property name="layoutDirection">     <enum>Qt::LeftToRight</enum>    </property> -  <property name="styleSheet"> -   <string notr="true">background-color: #ccc;</string> -  </property>    <layout class="QVBoxLayout" name="verticalLayout">     <item>      <widget class="QTabWidget" name="tabWidget"> @@ -54,6 +51,9 @@        <number>0</number>       </property>       <widget class="QWidget" name="tabWidgetPage1"> +      <property name="styleSheet"> +       <string notr="true">background-color: #ccc;</string> +      </property>        <attribute name="title">         <string>Yaw</string>        </attribute> @@ -104,6 +104,9 @@        </layout>       </widget>       <widget class="QWidget" name="tabWidgetPage2"> +      <property name="styleSheet"> +       <string notr="true">background-color: #ccc;</string> +      </property>        <attribute name="title">         <string>Pitch</string>        </attribute> @@ -154,6 +157,9 @@        </layout>       </widget>       <widget class="QWidget" name="tabWidgetPage3"> +      <property name="styleSheet"> +       <string notr="true">background-color: #ccc;</string> +      </property>        <attribute name="title">         <string>Roll</string>        </attribute> @@ -204,6 +210,9 @@        </layout>       </widget>       <widget class="QWidget" name="tabWidgetPage4"> +      <property name="styleSheet"> +       <string notr="true">background-color: #ccc;</string> +      </property>        <attribute name="title">         <string>X</string>        </attribute> @@ -254,6 +263,9 @@        </layout>       </widget>       <widget class="QWidget" name="tabWidgetPage5"> +      <property name="styleSheet"> +       <string notr="true">background-color: #ccc;</string> +      </property>        <attribute name="title">         <string>Y</string>        </attribute> @@ -304,6 +316,9 @@        </layout>       </widget>       <widget class="QWidget" name="tabWidgetPage6"> +      <property name="styleSheet"> +       <string notr="true">background-color: #ccc;</string> +      </property>        <attribute name="title">         <string>Z</string>        </attribute> | 
