-rw-r--r-- | core/launcher/startmenu.cpp | 2 | ||||
-rw-r--r-- | pics/launcher/start_button.png (renamed from pics/start_button.png) | bin | 780 -> 780 bytes | |||
-rw-r--r-- | pics/start_button.xpm | 26 |
3 files changed, 1 insertions, 27 deletions
diff --git a/core/launcher/startmenu.cpp b/core/launcher/startmenu.cpp index 007b483..237a2de 100644 --- a/core/launcher/startmenu.cpp +++ b/core/launcher/startmenu.cpp @@ -70,33 +70,33 @@ void StartMenu::loadOptions() #ifdef USE_CONFIG_FILE // Read configuration file Config config("StartMenu"); config.setGroup( "StartMenu" ); QString tmpBoolString1 = config.readEntry( "UseWidePopupMenu", "FALSE" ); useWidePopupMenu = ( tmpBoolString1 == "TRUE" ) ? TRUE : FALSE; QString tmpBoolString2 = config.readEntry( "StartButtonIsFlat", "TRUE" ); startButtonIsFlat = ( tmpBoolString2 == "TRUE" ) ? TRUE : FALSE; QString tmpBoolString3 = config.readEntry( "UseMRUList", "TRUE" ); popupMenuSidePixmap = config.readEntry( "PopupMenuSidePixmap", "sidebar" ); startButtonPixmap = config.readEntry( "StartButtonPixmap", "go" ); #else // Basically just #include the .qpe_menu.conf file settings useWidePopupMenu = FALSE; popupMenuSidePixmap = "go"; startButtonIsFlat = TRUE; - startButtonPixmap = "start_button"; + startButtonPixmap = "launcher/start_button"; #endif } void StartMenu::createMenu() { if ( useWidePopupMenu ) launchMenu = new PopupWithLaunchSideThing( this, &popupMenuSidePixmap ); else launchMenu = new StartPopupMenu( this ); loadMenu( apps, launchMenu ); } void StartMenu::itemSelected( int id ) diff --git a/pics/start_button.png b/pics/launcher/start_button.png Binary files differindex c84c00b..c84c00b 100644 --- a/pics/start_button.png +++ b/pics/launcher/start_button.png diff --git a/pics/start_button.xpm b/pics/start_button.xpm deleted file mode 100644 index 6eba2a5..0000000 --- a/pics/start_button.xpm +++ b/dev/null @@ -1,26 +0,0 @@ -/* XPM */ -static char * start_button_xpm[] = { -"50 16 7 1", -" c None", -". c #707070", -"+ c #FFFFFF", -"@ c #000000", -"# c #008200", -"$ c #C0C0C0", -"% c #B7B500", -".++++++++++++++++++++++++++++++++++++++++++++++++@", -"+##############$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$@", -"+####@@@@@@####$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$@", -"+###@@@@@@@@###$$$@@@@$$$$@$$$$$$$$$$$$$$$$$$@$$$@", -"+##@@#####@@@##$$@@$$@@$$@@$$$$$$$$$$$$$$$$$@@$$$@", -"+#@@#######@@@#$$@@$$$$$@@@@@$$@@@@$$$@@$@@@@@@@$@", -"+#@#########@@#$$@@@$$$$$@@$$$@@$$@@$$@@$@@$@@$$$@", -"+#@###@%@###@@#$$$@@@@$$$@@$$$$$$$@@$$@@@$$$@@$$$@", -"+#@###%%%###@@#$$$$$@@@$$@@$$$$@@@@@$$@@$$$$@@$$$@", -"+#@###@%@###@@#$$$$$$@@$$@@$$$@@$$@@$$@@$$$$@@$$$@", -"+#@#########@@#$$@@$$@@$$@@$$$@@$$@@$$@@$$$$@@$$$@", -"+#@@########@@#$$$@@@@$$$$@@@$$@@@$@@$@@$$$$$@@@$@", -"+##@@######@@@#$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$@", -"+###@@####@@@##$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$@", -"+####@@@@@@@###$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"}; |