Skip to content

Commit

Permalink
Fix file dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidLazarescu committed Mar 26, 2024
1 parent e98ba86 commit 92230a8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ int main(int argc, char* argv[])
{
// clang-format off
// App
QGuiApplication app(argc, argv);
QGuiApplication::setOrganizationName("Librum-Reader");
QGuiApplication::setOrganizationDomain("librumreader.com");
QGuiApplication::setApplicationName("Librum");
QApplication app(argc, argv);
QApplication::setOrganizationName("Librum-Reader");
QApplication::setOrganizationDomain("librumreader.com");
QApplication::setApplicationName("Librum");
QQuickStyle::setStyle(QStringLiteral("Default"));

QIcon icon(":/src/logo.ico");
Expand Down
1 change: 1 addition & 0 deletions src/presentation/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ target_link_libraries(presentation
domain
${MUPDF_OUTPUT}
Qt6::Core
Qt6::Widgets
Qt6::Quick
)

Expand Down

0 comments on commit 92230a8

Please sign in to comment.