Browse Source

Misc

tags/1.9.4
falkTX 10 years ago
parent
commit
91aed0f217
5 changed files with 9 additions and 2 deletions
  1. +4
    -0
      .gitignore
  2. BIN
      resources/bitmaps/background_noise2.png
  3. +1
    -0
      resources/resources.qrc
  4. +1
    -1
      resources/ui/carla_host.ui
  5. +3
    -1
      source/carla_host.py

+ 4
- 0
.gitignore View File

@@ -92,6 +92,10 @@ src/dist/
*build-*Debug/
*build-*Release/

# carla-plugin
source/modules/native-plugins/resources/carla-plugin
source/modules/native-plugins/resources/*.py

# zynaddsubfx
source/modules/native-plugins/zynaddsubfx/Output/
source/modules/native-plugins/zynaddsubfx/Tests/


BIN
resources/bitmaps/background_noise2.png View File

Before After
Width: 794  |  Height: 644  |  Size: 83KB

+ 1
- 0
resources/resources.qrc View File

@@ -49,6 +49,7 @@
<file>bitmaps/carla_about.png</file>
<file>bitmaps/background_calf.png</file>
<file>bitmaps/background_noise1.png</file>
<file>bitmaps/background_noise2.png</file>
<file>bitmaps/background_zynfx.png</file>
<file>bitmaps/button_calf1.png</file>
<file>bitmaps/button_calf2.png</file>


+ 1
- 1
resources/ui/carla_host.ui View File

@@ -130,7 +130,7 @@
<bool>true</bool>
</property>
<property name="dragDropMode">
<enum>QAbstractItemView::DragDrop</enum>
<enum>QAbstractItemView::DragOnly</enum>
</property>
</widget>
</item>


+ 3
- 1
source/carla_host.py View File

@@ -154,7 +154,9 @@ class HostWindow(QMainWindow):
self.ui.setupUi(self)

if False:
gCarla.gui = self
# kdevelop likes this :)
gCarla.gui = self
gCarla.host = Host("")
self.fContainer = CarlaDummyW(self)

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


Loading…
Cancel
Save