1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
diff --git a/src/windows/main_window.py b/src/windows/main_window.py
index df9a7feb3..c69c643b1 100644
--- a/src/windows/main_window.py
+++ b/src/windows/main_window.py
@@ -609,17 +609,6 @@ class MainWindow(QMainWindow, updates.UpdateWatcher, updates.UpdateInterface):
else:
log.info('canceled')
- def actionUploadVideo_trigger(self, event):
- # show window
- from windows.upload_video import UploadVideo
- win = UploadVideo()
- # Run the dialog event loop - blocking interaction on this window during this time
- result = win.exec_()
- if result == QDialog.Accepted:
- log.info('Upload Video add confirmed')
- else:
- log.info('Upload Video add cancelled')
-
def actionExportVideo_trigger(self, event):
# show window
from windows.export import Export
@@ -2241,9 +2230,6 @@ class MainWindow(QMainWindow, updates.UpdateWatcher, updates.UpdateInterface):
self.ExportFrame.connect(self.FrameExported)
self.ExportEnded.connect(self.ExportFinished)
- # Install event filter
- self.installEventFilter(self)
-
# Save settings
s.save()
@@ -2251,4 +2237,4 @@ class MainWindow(QMainWindow, updates.UpdateWatcher, updates.UpdateInterface):
QTimer.singleShot(100, self.refreshFrameSignal.emit)
# Main window is initialized
- self.initialized = True
\ No newline at end of file
+ self.initialized = True
|