Skip to content

Commit

Permalink
Updated mainLanding.py
Browse files Browse the repository at this point in the history
  • Loading branch information
abckhush authored Jul 1, 2024
1 parent 2f6a60e commit dbad91f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mainLanding.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ def build(self):
button_layout.add_widget(Button(text="Waveform", on_press=self.launch_visualizer))
button_layout.add_widget(Button(text="Spectrogram", on_press=self.launch_visualizer))
button_layout.add_widget(Button(text="Intensity vs Frequency and Time", on_press=self.launch_visualizer))
button_layout.add_widget(Button(text="Depth-Perspective Visualizer", on_press=self.launch_visualizer))

theme_button = Button(text="Change Theme", size_hint=(1, 0.1), background_color=(0, 1, 0, 1))
theme_button.bind(on_press=self.change_theme)
Expand Down Expand Up @@ -88,7 +89,8 @@ def launch_visualizer(self, instance):
"Amplitude-Frequency Visualizer": "Amplitude-Frequency-Visualizer.py",
"Waveform": "Waveform.py",
"Spectrogram": "Spectogram.py",
"Intensity vs Frequency and Time": "Intensity-vs-Frequency-and-Time.py"
"Intensity vs Frequency and Time": "Intensity-vs-Frequency-and-Time.py",
"Depth-Perspective Visualizer": "Depth-Perspective-Visualizer.py"
}

script_name = instance.text
Expand Down

0 comments on commit dbad91f

Please sign in to comment.