Skip to content

Commit

Permalink
adapt to new patchbay file orga
Browse files Browse the repository at this point in the history
  • Loading branch information
Houston4444 committed Jan 13, 2025
1 parent 81864c5 commit e26154f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion HoustonPatchbay
Submodule HoustonPatchbay updated 65 files
+8 −7 .gitignore
+11 −11 Makefile
+1 −0 TODO
+5 −0 source/patchbay/__init__.py
+0 −0 source/patchbay/bar_widget_canvas.py
+0 −0 source/patchbay/bar_widget_jack.py
+0 −0 source/patchbay/bar_widget_transport.py
+1 −1 source/patchbay/base_connection.py
+0 −0 source/patchbay/base_elements.py
+2 −2 source/patchbay/base_group.py
+1 −1 source/patchbay/base_port.py
+1 −1 source/patchbay/base_portgroup.py
+1 −1 source/patchbay/calbacker.py
+1 −1 source/patchbay/cancel_mng.py
+1 −1 source/patchbay/canvas_menu.py
+1 −1 source/patchbay/conns_clipboard.py
+0 −0 source/patchbay/filter_frame.py
+1 −1 source/patchbay/group_menu.py
+1 −1 source/patchbay/hiddens_indicator.py
+0 −0 source/patchbay/options_dialog.py
+2 −2 source/patchbay/patchbay_manager.py
+0 −0 source/patchbay/patchbay_signals.py
+0 −0 source/patchbay/patchcanvas/TODO
+1 −1 source/patchbay/patchcanvas/__init__.py
+1 −1 source/patchbay/patchcanvas/arranger.py
+1 −1 source/patchbay/patchcanvas/box_hidder.py
+1 −1 source/patchbay/patchcanvas/box_layout.py
+1 −1 source/patchbay/patchcanvas/box_widget.py
+1 −1 source/patchbay/patchcanvas/box_widget_moth.py
+0 −0 source/patchbay/patchcanvas/box_widget_shadow.py
+1 −1 source/patchbay/patchcanvas/connectable_widget.py
+0 −0 source/patchbay/patchcanvas/grid_widget.py
+1 −1 source/patchbay/patchcanvas/grouped_lines_widget.py
+1 −1 source/patchbay/patchcanvas/hidden_conn_widget.py
+1 −1 source/patchbay/patchcanvas/icon_widget.py
+1 −1 source/patchbay/patchcanvas/init_values.py
+1 −1 source/patchbay/patchcanvas/line_move_widget.py
+1 −1 source/patchbay/patchcanvas/line_widget.py
+1 −1 source/patchbay/patchcanvas/patchcanvas.py
+1 −1 source/patchbay/patchcanvas/port_widget.py
+1 −1 source/patchbay/patchcanvas/portgroup_widget.py
+1 −1 source/patchbay/patchcanvas/scene.py
+1 −1 source/patchbay/patchcanvas/scene_moth.py
+0 −0 source/patchbay/patchcanvas/scene_view.py
+0 −0 source/patchbay/patchcanvas/theme.py
+0 −0 source/patchbay/patchcanvas/theme_manager.py
+1 −1 source/patchbay/patchcanvas/utils.py
+0 −0 source/patchbay/patchcanvas/xdg.py
+1 −1 source/patchbay/port_info_dialog.py
+1 −1 source/patchbay/port_menu.py
+0 −0 source/patchbay/rename_group_dialog.py
+1 −1 source/patchbay/selected_boxes_menu.py
+1 −1 source/patchbay/surclassed_widgets.py
+0 −0 source/patchbay/tool_bar.py
+0 −0 source/patchbay/tools_widgets.py
+1 −1 source/patchbay/type_filter_frame.py
+1 −1 source/patchbay/view_selector_frame.py
+0 −0 source/patchbay/views_menu.py
+0 −0 source/patshared/__init__.py
+0 −0 source/patshared/base_enums.py
+0 −0 source/patshared/group_pos.py
+0 −0 source/patshared/json_tools.py
+0 −0 source/patshared/portgroups_dict.py
+0 −0 source/patshared/pretty_names.py
+0 −0 source/patshared/views_dict.py
2 changes: 1 addition & 1 deletion src/patchichi.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
from pathlib import Path

# set HoustonPatchbay submodule as lib
sys.path.insert(1, str(Path(__file__).parents[1] / 'HoustonPatchbay'))
sys.path.insert(1, str(Path(__file__).parents[1] / 'HoustonPatchbay/source'))

from qt_api import QT_API

Expand Down
2 changes: 1 addition & 1 deletion src/patchichi_pb_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from qtpy.QtCore import QSettings
from qtpy.QtWidgets import QApplication

from patchbay.patchcanvas.patshared import (
from patshared import (
PortMode, PortType, PortTypesViewFlag)
from patchbay.base_elements import JackMetadata, JackPortFlag
from patchbay import (
Expand Down

0 comments on commit e26154f

Please sign in to comment.