1
0
mirror of https://github.com/gryf/coach.git synced 2025-12-18 11:40:18 +01:00

wxPython removal (#207)

Replacing wxPython with Python's Tkinter.
Also removing the option to choose multiple files as it is unused and causes errors, and fixing the load file/directory spinner.
This commit is contained in:
Gal Novik
2019-01-23 20:49:37 +02:00
committed by GitHub
parent 516547e3df
commit 135f02fb46
5 changed files with 45 additions and 44 deletions

View File

@@ -55,6 +55,9 @@ class SignalsFileBase:
signal.toggle_axis()
def update_source_and_signals(self):
# Remove old index
self.csv = self.csv.reset_index(drop=True)
# create bokeh data sources
self.bokeh_source_orig = ColumnDataSource(self.csv)