We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35f1f58 commit 2b726f5Copy full SHA for 2b726f5
main.py
@@ -1,7 +1,7 @@
1
from PyQt5.QtGui import *
2
from PyQt5.QtWidgets import *
3
from PyQt5.QtCore import *
4
-import os, json
+import os, json, socket
5
6
from plotter import Plotter
7
import util
@@ -29,7 +29,8 @@
29
30
XML_CANCEL_MSG = "You need to provide an Etterna.xml file for this program to work"
31
SETTINGS_PATH = "etterna-graph-settings.json"
32
-IGNORE_REPLAYS = True
+IGNORE_REPLAYS = True # Development purposes
33
+if socket.gethostname() != "kangalioo-pc": IGNORE_REPLAYS = False
34
35
# QScrollArea wrapper with scroll wheel scrolling disabled.
36
# I did this to prevent simultaneous scrolling and panning
0 commit comments