We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50d5b52 commit d9add04Copy full SHA for d9add04
milonga.py
@@ -4,8 +4,8 @@
4
user_home = os.path.expanduser('~')
5
file_path = os.path.join(user_home, 'milonga.log')
6
7
-f =open(file_path, 'w')
8
-sys.stdout = f
+#f =open(file_path, 'w')
+#sys.stdout = f
9
10
11
@@ -484,13 +484,14 @@ def drop_position(event):
484
485
def drop(event):
486
global current_line
487
-
+ make_drop(event)
488
+ """
489
def worker():
490
make_drop(event)
491
492
thread = threading.Thread(target=worker, daemon=True)
493
thread.start()
494
495
496
settings = config.load_settings()
497
0 commit comments