From db17a72ff6f4ef4086abe6ab2c5497b6725e6f2a Mon Sep 17 00:00:00 2001 From: jp9000 Date: Fri, 13 Mar 2015 07:20:04 -0700 Subject: [PATCH] UI: Fix typo in dark theme causing wrong borders This fixes an issue where the borders for certain types of windows would not match the intended border style/color. It was supposed to be 1 through 6 for frameShape, but I ended up putting 5 twice. --- obs/data/themes/Dark.qss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/obs/data/themes/Dark.qss b/obs/data/themes/Dark.qss index 6b99805fd..03aba197d 100644 --- a/obs/data/themes/Dark.qss +++ b/obs/data/themes/Dark.qss @@ -37,7 +37,7 @@ QWidget { selection-color: black; } -* [frameShape="1"], * [frameShape="2"], * [frameShape="3"], * [frameShape="4"], * [frameShape="5"], * [frameShape="5"] { +* [frameShape="1"], * [frameShape="2"], * [frameShape="3"], * [frameShape="4"], * [frameShape="5"], * [frameShape="6"] { border: 1px solid rgb(31,30,31); }