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):
self.setDragDropMode(QListView.DropOnly)
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.setDuration(250)
self.animation.setEasingCurve(QEasingCurve.Linear)
......
......@@ -56,8 +56,7 @@
<property name="styleSheet">
<string notr="true">QTextEdit {
margin: 4px 5px 4px 5px;
border: 1px solid palette(dark);
border-style: inset;
border: 1px inset palette(dark);
border-radius: 3px;
}
</string>
......
......@@ -787,8 +787,7 @@ noQTabBar::tab:selected { background: palette(light); }
<property name="styleSheet">
<string notr="true">QTextEdit {
margin: 4px 5px 4px 5px;
border: 1px solid palette(dark);
border-style: inset;
border: 1px inset palette(dark);
border-radius: 3px;
}
</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