diff --git a/sources/appl/init.cpp b/sources/appl/init.cpp index 7fb04f8..6c45be2 100644 --- a/sources/appl/init.cpp +++ b/sources/appl/init.cpp @@ -68,6 +68,10 @@ void APP_Init(void) #else ewol::config::FontSetDefault("FreeSerif", 14); #endif + + // set the application icon ... + ewol::SetIcon("DATA:icon.png"); + // init internal global value globals::init(); @@ -125,12 +129,6 @@ void APP_Init(void) } -etk::UString APP_Icon(void) -{ - etk::UString bitmapFile("DATA:iconEdn.bmp"); - return bitmapFile; -} - /** * @brief main application function Un-Initialisation */ diff --git a/sources/file.mk b/sources/file.mk index b48f636..c70e6bb 100644 --- a/sources/file.mk +++ b/sources/file.mk @@ -44,7 +44,7 @@ FILE_LIST+= appl/Highlight/HighlightPattern.cpp \ FILE_LIST+= appl/init.cpp -LOCAL_COPY_FOLDERS := \ +LOCAL_COPY_FOLDERS := ../data/icon.*: \ ../data/color/*.xml:color/ \ ../data/languages/asm/*.xml:languages/asm/ \ ../data/languages/bash/*.xml:languages/bash/ \