!rename
This commit is contained in:
parent
43ffeed391
commit
80d3783701
3 changed files with 12 additions and 11 deletions
|
@ -244,20 +244,21 @@
|
|||
#define APP_SKIN_METADATA_FILE "metadata.xml"
|
||||
#define APP_STYLE_DEFAULT "Fusion"
|
||||
|
||||
#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) && !defined(FORCE_BUNDLE_ICONS)
|
||||
#define APP_THEME_DEFAULT ""
|
||||
#else
|
||||
#define APP_THEME_DEFAULT "Breeze"
|
||||
#endif
|
||||
// #if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) && !defined(FORCE_BUNDLE_ICONS)
|
||||
// #define APP_ICON_THEME_DEFAULT ""
|
||||
// #else
|
||||
// #define APP_ICON_THEME_DEFAULT "Breeze"
|
||||
// #endif
|
||||
|
||||
#if defined(FORCE_BUNDLE_ICONS)
|
||||
// Forcibly bundle icons.
|
||||
#define APP_THEME_DEFAULT "Breeze"
|
||||
#define APP_ICON_THEME_DEFAULT "Breeze"
|
||||
#elif defined(Q_OS_UNIX) && !defined(Q_OS_MACOS)
|
||||
#define APP_THEME_DEFAULT ""
|
||||
// Do not force default theme on Linux.
|
||||
#define APP_ICON_THEME_DEFAULT ""
|
||||
#else
|
||||
// Bundle icons otherwise.
|
||||
#define APP_THEME_DEFAULT "Breeze"
|
||||
// Use some default theme otherwise.
|
||||
#define APP_ICON_THEME_DEFAULT "Breeze"
|
||||
#endif
|
||||
|
||||
#define APP_LOCAL_ICON_THEME_FOLDER "icons"
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>405</width>
|
||||
<height>305</height>
|
||||
<height>390</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
|
|
|
@ -386,7 +386,7 @@ DKEY GUI::DefaultSortOrderFeeds = "default_sort_order_feeds";
|
|||
DVALUE(Qt::SortOrder) GUI::DefaultSortOrderFeedsDef = Qt::AscendingOrder;
|
||||
|
||||
DKEY GUI::IconTheme = "icon_theme_name";
|
||||
DVALUE(char*) GUI::IconThemeDef = APP_THEME_DEFAULT;
|
||||
DVALUE(char*) GUI::IconThemeDef = APP_ICON_THEME_DEFAULT;
|
||||
|
||||
DKEY GUI::Skin = "skin";
|
||||
DVALUE(char*) GUI::SkinDef = APP_SKIN_DEFAULT;
|
||||
|
|
Loading…
Add table
Reference in a new issue