Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions ProperTree.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@
sys.path.append(os.path.abspath(os.path.dirname(__file__)))
from Scripts import plist, plistwindow, downloader

# HiDPI fix for Windows 10/11
if os.name == 'nt':
try:
ctypes.windll.shcore.SetProcessDpiAwareness(1)
except:
pass

def _check_for_update(queue, version_url = None, user_initiated = False):
args = [sys.executable]
file_path = os.path.join(os.path.abspath(os.path.dirname(__file__)),"Scripts","update_check.py")
Expand Down