diff --git a/src/main.cpp b/src/main.cpp index 71bf81f..cb98a48 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -30,7 +30,7 @@ int main(int argc, char *argv[]) { a.setOrganizationDomain("www.fasttrack.sh"); w.setWindowIcon(QIcon(":/assets/icon.png")); QFontDatabase::addApplicationFont(":/assets/Font.ttf"); - w.setStyleSheet("QWidget { font-family: 'Lato'; }"); + w.setStyleSheet("QWidget {font-family: 'Lato', sans-serif;}"); w.show(); a.exec(); } diff --git a/src/theme.qss b/src/theme.qss index e34f6e7..f33c268 100644 --- a/src/theme.qss +++ b/src/theme.qss @@ -2,7 +2,7 @@ QWidget { background: #FFFFFF; alternate-background-color: #DEE4E7; selection-background-color: #37474F; - font-family: "Lato" + font-family: 'Lato', sans-serif; } QPushButton {