Fix default theme path with QRC

This commit is contained in:
miruka 2020-03-12 16:46:44 -04:00
parent b531ca0a4a
commit a6315f7829

View File

@ -289,7 +289,7 @@ class Theme(DataFile):
async def default_data(self) -> str:
async with aiofiles.open("src/themes/Midnight.qpl") as file:
async with aiofiles.open("../themes/Midnight.qpl") as file:
return await file.read()