Hide or show the waterfall+audio_widget based on the current main tab

This commit is contained in:
alessandro90
2019-06-25 18:46:06 +02:00
parent 497cdeed4a
commit 52ac5e7752
2 changed files with 22 additions and 1 deletions

View File

@@ -1,6 +1,16 @@
from collections import namedtuple
from enum import Enum, auto
import os.path
from enum import IntEnum
class MainTabs(IntEnum):
"""The main tabs indeces."""
SIGNAL = 0
FILTERS = 1
GFD = 2
FORECAST = 3
class Ftype: