Skip to content

Commit

Permalink
Merge branch 'main' into new_version_docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Mkranj committed Oct 7, 2023
2 parents 331166f + 47cf1c8 commit 24a60f0
Show file tree
Hide file tree
Showing 31 changed files with 638 additions and 523 deletions.
14 changes: 9 additions & 5 deletions PapersCited/PapersCited.py → PapersCited.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from UI.windowUI import main_window
from UI.messages import version

# -*- coding: utf-8 -*-
from UI.mainWindow import mainWindow
from UI.messages import version
from ctypes import windll

# Welcome message, before loading anything
if __name__ == "__main__":
Expand All @@ -11,8 +11,12 @@
# MAIN ----

def main():
main_window.focus_force()
main_window.mainloop()
# Resolution awareness - prevents from being blurry on high DPI
windll.shcore.SetProcessDpiAwareness(1)
UI = mainWindow()

UI.focus_force()
UI.mainloop()

if __name__ == "__main__":
main()
163 changes: 0 additions & 163 deletions PapersCited/UI/appData.py

This file was deleted.

Binary file removed PapersCited/UI/miniicon.png
Binary file not shown.
Loading

0 comments on commit 24a60f0

Please sign in to comment.