diff options
author | Sergey Starosek <sergey.starosek@gmail.com> | 2014-06-28 12:14:36 +0400 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-06-28 06:29:20 -0700 |
commit | 22d56889bbed5616d40d4a1391750b94ec500b9e (patch) | |
tree | 2e4bbc5ab3fb338e970fc3c71af5f0dbf88409f8 /subsurface.qrc | |
parent | c84b40664de756b103e3304fb015edc05049ae39 (diff) | |
download | subsurface-22d56889bbed5616d40d4a1391750b94ec500b9e.tar.gz |
Fallback to loading theme icons from resources
Since not all platforms support theme icons, we need to pack
them into resources and fallback to that resource theme.
There seems to be a bug in Qt
(https://bugreports.qt-project.org/browse/QTBUG-16697), thus
default theme name (hicolor) does not work. So we test for
'window-close' theme icon on startup and if not found, set theme
name to 'subsurface'
Signed-off-by: Sergey Starosek <sergey.starosek@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'subsurface.qrc')
-rw-r--r-- | subsurface.qrc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/subsurface.qrc b/subsurface.qrc index 47a8ce414..48dce73dd 100644 --- a/subsurface.qrc +++ b/subsurface.qrc @@ -53,6 +53,10 @@ <file alias="icon_ceiling_dc">icons/pc.png</file> <file alias="icon_ead">icons/ead.png</file> <file alias="icon_HR">icons/icon-HR.png</file> - <file alias="calendar">icons/calendarbg.png</file> + <file alias="calendar">icons/calendarbg.png</file> + <file>icons/subsurface/index.theme</file> + <file>icons/subsurface/32x32/actions/go-down.png</file> + <file>icons/subsurface/32x32/actions/go-up.png</file> + <file>icons/subsurface/32x32/actions/window-close.png</file> </qresource> </RCC> |