Browse Source

Set font size for plugin preset and midi/audio indicator labels (#700)

Fixes text for plugin knobs being clipped in some desktop environments.
tags/v1.9.11
Jonathan Liu Filipe Coelho <falktx@falktx.com> 6 years ago
parent
commit
265cd5d925
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      source/carla_skin.py

+ 6
- 0
source/carla_skin.py View File

@@ -527,6 +527,12 @@ class AbstractPluginSlot(QFrame, PluginEditParentMeta):
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)

# -------------------------------------------------------------


Loading…
Cancel
Save