Commit efed762e authored by Dan Pascu's avatar Dan Pascu

Removed redundant border-style statement from style declarations

parent 8a2fef34
...@@ -2625,7 +2625,7 @@ class ChatSessionListView(QListView): ...@@ -2625,7 +2625,7 @@ class ChatSessionListView(QListView):
self.setDragDropMode(QListView.DropOnly) self.setDragDropMode(QListView.DropOnly)
self.setSelectionMode(QListView.SingleSelection) # default self.setSelectionMode(QListView.SingleSelection) # default
self.setStyleSheet("""QListView { border: 1px solid palette(dark); border-style: inset; border-radius: 3px; }""") self.setStyleSheet("""QListView { border: 1px inset palette(dark); border-radius: 3px; }""")
self.animation = QPropertyAnimation(self, 'geometry') self.animation = QPropertyAnimation(self, 'geometry')
self.animation.setDuration(250) self.animation.setDuration(250)
self.animation.setEasingCurve(QEasingCurve.Linear) self.animation.setEasingCurve(QEasingCurve.Linear)
......
...@@ -56,8 +56,7 @@ ...@@ -56,8 +56,7 @@
<property name="styleSheet"> <property name="styleSheet">
<string notr="true">QTextEdit { <string notr="true">QTextEdit {
margin: 4px 5px 4px 5px; margin: 4px 5px 4px 5px;
border: 1px solid palette(dark); border: 1px inset palette(dark);
border-style: inset;
border-radius: 3px; border-radius: 3px;
} }
</string> </string>
......
...@@ -787,8 +787,7 @@ noQTabBar::tab:selected { background: palette(light); } ...@@ -787,8 +787,7 @@ noQTabBar::tab:selected { background: palette(light); }
<property name="styleSheet"> <property name="styleSheet">
<string notr="true">QTextEdit { <string notr="true">QTextEdit {
margin: 4px 5px 4px 5px; margin: 4px 5px 4px 5px;
border: 1px solid palette(dark); border: 1px inset palette(dark);
border-style: inset;
border-radius: 3px; border-radius: 3px;
} }
</string> </string>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment