Skip to content
Snippets Groups Projects
Commit 75ff559c authored by jcarpent's avatar jcarpent
Browse files

[GUI] Set explicitly the application icon

parent 983ef49c
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,7 @@
#include <QCleanlooksStyle>
#include <QProcessEnvironment>
#include <QSplashScreen>
#include <QIcon>
#include "gepetto/gui/safeapplication.hh"
#include "gepetto/gui/mainwindow.hh"
......@@ -32,6 +33,8 @@ int main(int argc, char *argv[])
SafeApplication a(argc, argv);
a.setStyle(new QCleanlooksStyle);
QIcon app_icon(":/img/gepetto.png");
a.setWindowIcon(app_icon);
setupApplication();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment