From 265cd5d925b0cd504d1f4a5207f77a5b8f5ca800 Mon Sep 17 00:00:00 2001 From: Jonathan Liu Date: Mon, 27 Aug 2018 01:45:08 +1000 Subject: [PATCH] Set font size for plugin preset and midi/audio indicator labels (#700) Fixes text for plugin knobs being clipped in some desktop environments. --- source/carla_skin.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source/carla_skin.py b/source/carla_skin.py index 98891e4a3f..9608d7d339 100755 --- a/source/carla_skin.py +++ b/source/carla_skin.py @@ -527,6 +527,12 @@ def ready(self): QLabel#label_name:disabled { color: #555; } """ % styleSheet2 + styleSheet += """ + QComboBox#cb_presets, + QLabel#label_audio_in, + QLabel#label_audio_out, + QLabel#label_midi { font-size: 10px; } + """ self.setStyleSheet(styleSheet) # -------------------------------------------------------------