Browse Source

Claudia: Fix add-new popup menu action (closes #18)

tags/v0.9.0
falkTX 12 years ago
parent
commit
2b4c5abbd9
2 changed files with 3 additions and 3 deletions
  1. +2
    -2
      src/claudia.py
  2. +1
    -1
      src/claudia_database.py

+ 2
- 2
src/claudia.py View File

@@ -2011,7 +2011,7 @@ class ClaudiaMainW(AbstractCanvasJackClass):
if act_x_sel:
if item.type() == ITEM_TYPE_STUDIO:
if act_x_sel == act_x_add_new:
pass #self.slot_app_add_new()
self.slot_app_add_new()
elif act_x_sel == act_x_run_custom:
self.slot_app_run_custom()
elif act_x_sel == act_x_create_room:
@@ -2019,7 +2019,7 @@ class ClaudiaMainW(AbstractCanvasJackClass):

elif item.type() == ITEM_TYPE_ROOM:
if act_x_sel == act_x_add_new:
pass # self.slot_app_add_new
self.slot_app_add_new()
elif act_x_sel == act_x_run_custom:
self.slot_app_run_custom()
elif act_x_sel == act_x_new:


+ 1
- 1
src/claudia_database.py View File

@@ -19,7 +19,7 @@ LEVEL_NSM = "NSM"
TEMPLATE_YES = "Yes"
TEMPLATE_NO = "No"

USING_KXSTUDIO = True
USING_KXSTUDIO = False

# -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
# DAW


Loading…
Cancel
Save