switch to freesimplegui

This commit is contained in:
2024-07-02 22:11:18 +01:00
parent 3a1143199a
commit 9969506698
8 changed files with 21 additions and 12 deletions

View File

@@ -1,4 +1,4 @@
import PySimpleGUI as psg
import FreeSimpleGUI as psg
from . import util
from .compound import LabelSlider

View File

@@ -1,6 +1,6 @@
from typing import Union
import PySimpleGUI as psg
import FreeSimpleGUI as psg
from . import util

View File

@@ -1,7 +1,7 @@
import logging
from pathlib import Path
import PySimpleGUI as psg
import FreeSimpleGUI as psg
from . import util
from .compound import CompSlider, GateSlider, LabelSliderAdvanced

View File

@@ -1,6 +1,6 @@
from typing import Iterable
import PySimpleGUI as psg
import FreeSimpleGUI as psg
def get_asio_input_spinbox_index(channel, num) -> int:

View File

@@ -2,7 +2,7 @@ import json
import logging
from pathlib import Path
import PySimpleGUI as psg
import FreeSimpleGUI as psg
from . import configuration, models, util
from .builder import Builder