Change UI loading for frozen
This commit is contained in:
parent
2a431c9f02
commit
96b283adbb
|
@ -1,14 +1,13 @@
|
|||
from PyQt4 import uic
|
||||
import os.path
|
||||
import sys
|
||||
from shared import codePath
|
||||
|
||||
def resource_path(resFile):
|
||||
baseDir = codePath()
|
||||
for subDir in ["ui", "bitmessageqt"]:
|
||||
if os.path.isdir(os.path.join(baseDir, subDir)) and os.path.isfile(os.path.join(baseDir, subDir, resFile)):
|
||||
return os.path.join(baseDir, subDir, resFile)
|
||||
|
||||
def resource_path(path):
|
||||
try:
|
||||
return os.path.join(sys._MEIPASS, path)
|
||||
except:
|
||||
return os.path.join(os.path.dirname(__file__), path)
|
||||
|
||||
|
||||
def load(path, widget):
|
||||
uic.loadUi(resource_path(path), widget)
|
||||
def load(resFile, widget):
|
||||
uic.loadUi(resource_path(resFile), widget)
|
||||
|
|
Loading…
Reference in New Issue
Block a user