diff --git a/resources/resources.qrc b/resources/resources.qrc index e7114650ff..6436903416 100644 --- a/resources/resources.qrc +++ b/resources/resources.qrc @@ -87,11 +87,11 @@ bitmaps/button_file_down-white.png bitmaps/button_file_hover-black.png bitmaps/button_file_hover-white.png - + bitmaps/button_gui-black.png scalable/button_gui-white.svg - + bitmaps/button_gui_down-black.png scalable/button_gui_down-white.svg - + bitmaps/button_gui_hover-black.png scalable/button_gui_hover-white.svg scalable/button_off.svg diff --git a/resources/ui/carla_about.ui b/resources/ui/carla_about.ui index 0761e6b5f1..d5e4b0e01c 100644 --- a/resources/ui/carla_about.ui +++ b/resources/ui/carla_about.ui @@ -254,7 +254,10 @@ - :/bitmaps/dial_03.png + :/scalable/dial_03.svg + + + true @@ -276,7 +279,10 @@ - :/bitmaps/button_on.png + :/scalable/button_on.svg + + + true @@ -298,7 +304,10 @@ - :/bitmaps/button_gui_down-white.png + :/scalable/button_gui_down-white.svg + + + true @@ -320,7 +329,10 @@ - :/bitmaps/button_edit_down-white.png + :/scalable/button_edit_down-white.svg + + + true @@ -686,6 +698,12 @@ + + 0 + + + 1 + Qt::Horizontal @@ -905,6 +923,12 @@ + + 0 + + + 1 + Qt::Horizontal diff --git a/source/frontend/carla_widgets.py b/source/frontend/carla_widgets.py index b2ace05724..4b34ee485b 100755 --- a/source/frontend/carla_widgets.py +++ b/source/frontend/carla_widgets.py @@ -128,7 +128,7 @@ def __init__(self, parent, host): if self.ui.about.palette().color(QPalette.Background).blackF() < 0.5: self.ui.l_icons.setPixmap(QPixmap(":/bitmaps/carla_about_black.png")) self.ui.ico_example_edit.setPixmap(QPixmap(":/bitmaps/button_file-black.png")) - self.ui.ico_example_file.setPixmap(QPixmap(":/bitmaps/button_edit-black.png")) + self.ui.ico_example_file.setPixmap(QPixmap(":/scalable/button_edit-black.svg")) self.ui.ico_example_gui.setPixmap(QPixmap(":/bitmaps/button_gui-black.png")) if host.isControl: @@ -207,9 +207,12 @@ def __init__(self, parent, host): if usingJuce and (MACOS or WINDOWS): self.ui.l_vst2.setText(self.tr("Using JUCE host")) - self.ui.l_vst3.setText(self.tr("Using JUCE host")) else: self.ui.l_vst2.setText(self.tr("About 85% complete (missing vst bank/presets and some minor stuff)")) + + if usingJuce: + self.ui.l_vst3.setText(self.tr("Using JUCE host")) + else: self.ui.line_vst2.hide() self.ui.l_vst3.hide() self.ui.lid_vst3.hide()