From 35ae524bcf72b6b86de73b55dfe019a5c9e06652 Mon Sep 17 00:00:00 2001 From: Martchus Date: Thu, 13 May 2021 18:24:23 +0200 Subject: [PATCH] Update fallback icons to use Breeze icon theme --- gui/mainwindow.cpp | 4 +- gui/settingsdialog.cpp | 10 +- resources/icons.qrc | 11 +- .../settingscategories/document-edit.svg | 14 ++ .../32x32/settingscategories/folder-open.png | Bin 831 -> 0 bytes .../input-keyboard-symbolic.svg | 11 + .../32x32/settingscategories/key-enter.png | Bin 1111 -> 0 bytes .../32x32/settingscategories/plugins.svg | 12 + .../settingscategories/preferences-other.png | Bin 2339 -> 0 bytes .../settingscategories/preferences-other.svg | 28 +++ .../preferences-plugin-script.png | Bin 2207 -> 0 bytes .../settingscategories/preferences-plugin.png | Bin 1722 -> 0 bytes .../system-file-manager.png | Bin 1881 -> 0 bytes .../system-file-manager.svg | 235 ++++++++++++++++++ .../hicolor/32x32/settingscategories/tag.png | Bin 1800 -> 0 bytes .../hicolor/32x32/settingscategories/tag.svg | 42 ++++ .../settingscategories/view-list-tree.svg | 18 ++ 17 files changed, 374 insertions(+), 11 deletions(-) create mode 100644 resources/icons/hicolor/32x32/settingscategories/document-edit.svg delete mode 100644 resources/icons/hicolor/32x32/settingscategories/folder-open.png create mode 100644 resources/icons/hicolor/32x32/settingscategories/input-keyboard-symbolic.svg delete mode 100644 resources/icons/hicolor/32x32/settingscategories/key-enter.png create mode 100644 resources/icons/hicolor/32x32/settingscategories/plugins.svg delete mode 100644 resources/icons/hicolor/32x32/settingscategories/preferences-other.png create mode 100644 resources/icons/hicolor/32x32/settingscategories/preferences-other.svg delete mode 100644 resources/icons/hicolor/32x32/settingscategories/preferences-plugin-script.png delete mode 100644 resources/icons/hicolor/32x32/settingscategories/preferences-plugin.png delete mode 100644 resources/icons/hicolor/32x32/settingscategories/system-file-manager.png create mode 100644 resources/icons/hicolor/32x32/settingscategories/system-file-manager.svg delete mode 100644 resources/icons/hicolor/32x32/settingscategories/tag.png create mode 100644 resources/icons/hicolor/32x32/settingscategories/tag.svg create mode 100644 resources/icons/hicolor/32x32/settingscategories/view-list-tree.svg diff --git a/gui/mainwindow.cpp b/gui/mainwindow.cpp index 063c582..9cc8b1c 100644 --- a/gui/mainwindow.cpp +++ b/gui/mainwindow.cpp @@ -368,8 +368,8 @@ void MainWindow::toggleDbQueryWidget() void MainWindow::showAboutDlg() { if (!m_aboutDlg) { - m_aboutDlg = new AboutDialog(this, QStringLiteral(APP_URL), - tr("A tag editing utility supporting ID3, MP4 (iTunes style), Vorbis and Matroska tags."), + m_aboutDlg = new AboutDialog(this, QString(), QStringLiteral("

Developed by " APP_AUTHOR "
Fallback icons from KDE/Breeze project

"), + QString(), QString(), tr("A tag editing utility supporting ID3, MP4 (iTunes style), Vorbis and Matroska tags."), QImage(QStringLiteral(":/tageditor/icons/hicolor/128x128/apps/tageditor.png"))); } if (m_aboutDlg->isHidden()) { diff --git a/gui/settingsdialog.cpp b/gui/settingsdialog.cpp index 4fdf15d..257e3f3 100644 --- a/gui/settingsdialog.cpp +++ b/gui/settingsdialog.cpp @@ -652,13 +652,13 @@ SettingsDialog::SettingsDialog(QWidget *parent) category->setDisplayName(tr("Tag processing")); category->assignPages( { new TagProcessingGeneralOptionPage, new Id3v1OptionPage, new Id3v2OptionPage, new TagProcessingTargetsOptionPage, new FileLayoutPage }); - category->setIcon(QIcon::fromTheme(QStringLiteral("tag"), QIcon(QStringLiteral(":/tageditor/icons/hicolor/32x32/settingscategories/tag.png")))); + category->setIcon(QIcon::fromTheme(QStringLiteral("tag"), QIcon(QStringLiteral(":/tageditor/icons/hicolor/32x32/settingscategories/tag.svg")))); categories << category; category = new OptionCategory(this); category->setDisplayName(tr("Editor")); - category->setIcon( - QIcon::fromTheme(QStringLiteral("document-edit"), QIcon(QStringLiteral(":/tageditor/icons/hicolor/32x32/settingscategories/key-enter.png")))); + category->setIcon(QIcon::fromTheme( + QStringLiteral("document-edit"), QIcon(QStringLiteral(":/tageditor/icons/hicolor/32x32/settingscategories/document-edit.svg")))); category->assignPages({ new EditorGeneralOptionPage, new EditorTempOptionPage(this), new EditorFieldsOptionPage, new InfoOptionPage, new EditorAutoCorrectionOptionPage, new EditorDbQueryOptionsPage }); categories << category; @@ -666,7 +666,7 @@ SettingsDialog::SettingsDialog(QWidget *parent) category = new OptionCategory(this); category->setDisplayName(tr("File browser")); category->setIcon(QIcon::fromTheme( - QStringLiteral("view-list-tree"), QIcon(QStringLiteral(":/tageditor/icons/hicolor/32x32/settingscategories/system-file-manager.png")))); + QStringLiteral("view-list-tree"), QIcon(QStringLiteral(":/tageditor/icons/hicolor/32x32/settingscategories/view-list-tree.svg")))); category->assignPages({ new FileBrowserGeneralOptionPage }); categories << category; @@ -676,7 +676,7 @@ SettingsDialog::SettingsDialog(QWidget *parent) setMinimumSize(800, 450); setWindowIcon(QIcon::fromTheme( - QStringLiteral("preferences-other"), QIcon(QStringLiteral(":/tageditor/icons/hicolor/32x32/settingscategories/preferences-other.png")))); + QStringLiteral("preferences-other"), QIcon(QStringLiteral(":/tageditor/icons/hicolor/32x32/settingscategories/preferences-other.svg")))); // some settings could be applied without restarting the application, good idea? //connect(this, &Dialogs::SettingsDialog::applied, bind(&Dialogs::QtSettings::apply, &Settings::qtSettings())); diff --git a/resources/icons.qrc b/resources/icons.qrc index cfe8526..8b413dc 100644 --- a/resources/icons.qrc +++ b/resources/icons.qrc @@ -1,10 +1,13 @@ icons/hicolor/16x16/apps/tageditor.png - icons/hicolor/32x32/settingscategories/system-file-manager.png - icons/hicolor/32x32/settingscategories/key-enter.png - icons/hicolor/32x32/settingscategories/tag.png - icons/hicolor/32x32/settingscategories/preferences-other.png icons/hicolor/128x128/apps/tageditor.png + icons/hicolor/32x32/settingscategories/document-edit.svg + icons/hicolor/32x32/settingscategories/input-keyboard-symbolic.svg + icons/hicolor/32x32/settingscategories/plugins.svg + icons/hicolor/32x32/settingscategories/preferences-other.svg + icons/hicolor/32x32/settingscategories/system-file-manager.svg + icons/hicolor/32x32/settingscategories/tag.svg + icons/hicolor/32x32/settingscategories/view-list-tree.svg diff --git a/resources/icons/hicolor/32x32/settingscategories/document-edit.svg b/resources/icons/hicolor/32x32/settingscategories/document-edit.svg new file mode 100644 index 0000000..99e3648 --- /dev/null +++ b/resources/icons/hicolor/32x32/settingscategories/document-edit.svg @@ -0,0 +1,14 @@ + + + + + + diff --git a/resources/icons/hicolor/32x32/settingscategories/folder-open.png b/resources/icons/hicolor/32x32/settingscategories/folder-open.png deleted file mode 100644 index 018d7845ab4b5683d2e4c37edd264ca674dd0345..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 831 zcmV-F1Hk-=P)nx${t+HL>e(Jd@ZzQ7K@qh0TLc9w{-`aLHf_`FZg%#0Xp-(G+4PsOf_k+Ry)?6@>i+@$1^}<6EtAvCdX^(rz)1TKzLnuedB=L6CN6RuXjZ;tSHa{o zLq=FK0>-QZWEs9J!u-mP#Q_*75nMY@rP0pKKo~OQmFmK2-Pa*z%doJzJ8^(GB!B{d z&&&AE?Ovptr9J^L*J$U8&?$qxm2cO`uY#1I*8r^=xfCR65}=K;lZ|_a)zA`=i)jy+ z#s^FnfbvQhWL8LSC@Fvd*@%+Xo^}Y30Qx%vEU#7vF-ps`73pU2ibC4DRLx)^z)DmN z&@RHV1+ZpV=P08DFwz-dbuG;0XEUMfG;9jhgp=YLsDyDKXhH6}58Sz#M9FV`b!^Wnk&>vndgpmMR;`i7PUq#;qv-B%zd1M(NGXhKC)Of& zs7YrnUzgy+oWrHX18<(H4f8$wbD)3U3;@bK@9lSeFSt>FN*J4@$9u7tSkp|6(J8N5 z4JVy43Q&z=qfhXSeOGD4bZp_XAN29oA(;gpEjfjnt1mNlI z%Lif)puAR@B4xamIMeG>vWS>4jzQ%W)K|e`dG)D?8BbkmbvqTc69B~;YcR%t-2^Dx z(o0z?$0~p1jA#INcrkhhr`G}AOq_|2UAh0l8acbYMYR)CtEv0=;O2!8G8<8~vi#8V zOXEOaj|pn77Cmk>j=-;x+44b<4Y%)Gwd)-1lX^`#>pk`5Es6mW>%q z0SDCTSDf*2rX6K`1k~DUKtybPaIe5OggXH=yaSR>UR851n_pHk0j_uOViEuV002ov JPDHLkV1hy1d(Qv> diff --git a/resources/icons/hicolor/32x32/settingscategories/input-keyboard-symbolic.svg b/resources/icons/hicolor/32x32/settingscategories/input-keyboard-symbolic.svg new file mode 100644 index 0000000..c9ee779 --- /dev/null +++ b/resources/icons/hicolor/32x32/settingscategories/input-keyboard-symbolic.svg @@ -0,0 +1,11 @@ + + + + + + + diff --git a/resources/icons/hicolor/32x32/settingscategories/key-enter.png b/resources/icons/hicolor/32x32/settingscategories/key-enter.png deleted file mode 100644 index 3b1265b275200443b205758df94f2f4c0a4c2e77..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1111 zcmV-d1gQIoP)-VCM(4mf(8X8J7XXN z(Pct#qj`bg1GvdzHkV}K8~6r>;8GC5Y;+TG5f>o~ASSS8Q(e<@XRg{% zR83EJeZTXaQ&mmOjF((QBGs-&X+; zQLwYK^X#lh_0Cj2OwsK5F%r<85>d442%o# zVh0So5y-RO7B>J|>$d@r$=Y*MkSA_>r4-oNp3#Ak(rG)2s zQ+9-|;PLS>R##VD*PxWj-0K1$BC)-_{p;G=+V{i5!zh(XAfn96rk|XgOsn3#_V@R@ z0FpZB>%hCYxw$Wj#Uf^BXVdjDl2t*gx!-IyJ0~Y6f1IA4{+0pH zdzpwnjiTuD_4W0y!!Qh(nVjdl!%Z|3CpejhldYGpuCA^xE-nrM{KL$trIh4T;Moli zfV9R@@>@FpNjz_2W+T%{QvhP8H?0MrliZI1C}vh&4kR$rY64k7vV@HjW)hu@Z6MRD dL^M-S{{vrjk + + + + + + + diff --git a/resources/icons/hicolor/32x32/settingscategories/preferences-other.png b/resources/icons/hicolor/32x32/settingscategories/preferences-other.png deleted file mode 100644 index 16348e201d3b1f616e783b6f05ceae440f2d9cdc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2339 zcmV+;3EcLHP))b6lThr>a;ySsfwMMWt9$fKI^?to&|s#SkWNJyBW)rLT!P(l<%T)leLS65f( zICt(`O=o9kHvkC$;dyjG`{}2j8m(3<^>{o~5Cq!a-yaAK4J`nW1RxrK^0{V=FOXTb#`_zp`l^8fB!yi+`Ng| z@v|Y5N?DL*vi^SC|k+qZ8Uy1Kd!1L&oc`k&dr=%7(#XJ_x&uwlcF@4ow%)Lg2; zYx7@2WTXxQ0|T7NWHL23H~-Mo)Km+=2!I9P0^p{U3XjE}<-G?Gv~AnA&sthqXny{7 zx@3u-u37Uot*or1>({Tp4&V&{aR4F!Ou&y5kvvuJ8Q`ko;$lNvTN};J&Z7FIi|NYO zSJLChkJAr6_~1VPULA!pqwAjv{>27H#nc~t^wHP%@872x85?Pmei7B{_4L@WV>B-> zuM5D!f`XFCkHGcyjgI>IM#m!))z#O+p2+|JqS0tH2M!$gcXM+yeeb<=nxtPuU!DId zt*or1MMXvZ3WZ{MY3bqJcDqY77)}(_);32OjSm7wtV_~Vc58jWT(0L_{;>lQej59#2b zhjQF7_4x$q^9hvWhUws-hdP}P>DsmL&VN$>|K0*Z2(w_p0$pxy?pd8q_tO6Tdof^T z;j}xkVZ%nqWHRoPPd?d_pa1vyAt9k=h7l*}^$WMi<#L$KeYktK82~VM?(Yy26Ahow zhbvdE9RQ?#9LGhhU;k$A|1>}dVU{gh7Mqikb51Ii&iL}sL0D~8uof2S>FW_49qrw> zZ(knEvZpRws5MWXJV_#o6rw2N=+ToH7+^6x%#8p*P>@;?85x1}^fWLG1BM|mnH~hb z{r05tsV^ZRgh@?JotdAXf643h&L}(h1z47a+0=)WlvS8EZJNKlynNTad-qP+Y&N#A zurS4BvWS6zi1X)b;Bq;ABO|UNx0}_v-K=(G#8u>SIeq8P*B}rOVKQ07!otFo!oot~ zC&P#kB1ub2o0F51bGEImRd@QE)3DoYFqzCqUb+lPNlAgjhYugDtE)2rumYg-=FR?I zE|(LY=izqqAjE&Lv~+Lr6SBnx1;rt5H=o7xJmhjYnKy6t_dod$5JDvB>FJ5t+1Y2V zU%#%cxl{wY%?e|$2`|6=3ewWjXhlWEvFhsT{Qw>S5DkWtoik?4jAa-J;W!>@wNe}$ z#LlrBlSr^rtyXT~IG&NqgUE^%Zw|-C#`j8}gunm(`^gy@8K=&kJv;Hn&Fiq)Y%m+m zh>M$n%*;%B=FFL@Q>RYt0$`$)3WN}H?OMI5z1w&_G?0++`(4q|Q%OsU2~MXi zP*U>O7XeTLfJ8+_MO9T*wN+JB_0`qYwJ%@3{0}V4zIgidY3$jv2Y2q=X)Y=%$^_5| zV0i4uvb6M{`JthcJ`4*Bk;KO85FD(e0|VxpPN!q{kGt3AMMlQV=Xo#b?X|#ecLeNq zOF>rFpGyb;c|k$JI=x=MZ|Tyds{!<_T)FbitgNivf*_!yqoXG`H+Lg|TL8GR@Z#cP zX-LR#+~MJ2N|j1ZBO)T1$Ve?FOi)p;cZ2|dQmLRG4^J!>2L=W#;?R(vu&mYVa`jA< z0+9Iq{>h>!DyL4JYU%0eG0&Vi(*s&UlxnmCy@{mA0ICRfR>gP zzaWTIr;CwazFhNmM#f*hepJH%@caFK^IBw8q9pS4l}pzT54t`MGca zXllA6Yiw-bDl02e6B84at*x!Yt*x!YiHV8Iqes6=y?ggI*VNP`d$NX5N + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/icons/hicolor/32x32/settingscategories/preferences-plugin-script.png b/resources/icons/hicolor/32x32/settingscategories/preferences-plugin-script.png deleted file mode 100644 index e40988b8915cf876c38215dc0ce47d9819c46288..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2207 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 Q_y7O^07*qoM6N<$g81%58vpFMtK zsH(%FZufM%JzjyhQgz+F>Z$Y9fBti7E~?6NhFrUL&91GjHE-U$xo2ZzWB&Fhw--8{ z&c55XZ!fH`ukTUS=Jo5>ovIpDHJ2}6HmWLP<9X{Ns>;*X>gsCaqqV>NwcT#7IOlLK z!#RsF7Gn&?2&xc5AOuhFkq`rlqA{WhF)FHo7$ZfIuPq)ta`MupOV!h{+*EXs2M_N4 z=-9ENE3HY<%F0ufC6%vMI-hiYC?em{ zr*=H0z}2f)&&@5&{C0kRK5MmFxXfX##o06)W3k2{H3Wc0C29)nLm+aMogL0BbF_PK6*Kpjs;thY+YVM%AR*YOZ|vkM%1jPVn6+1%C6+ug)FXxA^v<1B-UJ@PGS?F|hvlVR+P8 z|Kj;qzx2lm1wQ`ggNq!o_WG~iCise|fHM3TyOQii05OO#N{5Jm2u48aXU0fUN`%Z= zPMtbsw;yd^1SSDm?b)rR!-skI#=FeT&+fX5xjl0jV-X`0&$aeIce_g%=MFo+d9=~v z!jTI+c=+$F;jXiwA_y7C> zzq@gZGZ(%|j1VHk03qz$|NOnXDVCA#DF86rVhmdK=@xLO0}CD&=U`t3DoOnpzwi~V ztzO}0Z@o1EFc|bX^TzkUfJRa?0-`2>pit!lMB0cv1Hc*CG9pOmV=XufKEg&0Ij}GT za|R9^+0W^(f1g;DNU{T};2I4MFU=A|f{juKCk6Kbs&W8;6+4{*tnG>jgaOttf^Zg$ zfl{Ft!FyO(nk6%{WCj`rTx|#MA;tutBn5(k*EE-9KXp)*?i4_lWt%ZZOz2|_qhW0g z1nTDXX5K&psLzzz*5J39|`3aSXc=;6J`IoX^7Xga&;y~o4>M!=w;f#8+OC`@d2);6aBW@cp5$H@KsQ!Fi?WN%Z*ELc~2 z!GSaI@%z_VS$UD8FT5}j{La05e7JU(mDA@5F;zl{$rDji8GiKlTNGu9bJa8ew6}a! z(bZWx&6j8`z}y_P8qlmq!+{Tu_kRB-_wL=F0C@QDAnITnvCQ;h|! z!cOqu!HK6R3w`zMYtvN#Xytv;&O*!Af3!JB^?YzHc|b{3@Y3f`;!NrRQrElI9k1~9 z&cn_;yl+r47~}gdG)z z_oauH^HgP#kH?$<2+)0gTS0A%Kqc{-Fvrz*ecW zGsw$9u`56fv6yQ+wtGs$vD0cvy9^O3pHkD#(#Q;>l8d$LLrC*b`ohE3K-ue*q9}I< z2*DTgGflRh1lkQdGTw0U%+)>Jz@SKgPN3zW=@Lk+gAY?tg{0hO9yydLRrwqMA3`zP zvUH2UO!KMW^@6rO8%*7tP}rA*DE#wG82YV-&@DWzG6DDqWrTJ}yBh}> zfsX+c0R}$F-mk#eWZJw6IOFM6zQ4N(W9VB8F;;ZT6ugR12FM*WY<>J1FruUX1tQ?1 zP!50V6GX2{vk|aWf$oo#UUvuZA@l)^AK?5Jp~&fLL6DL{0!|`E1BN)QfI`IJu~cfP zqD7@a!!(JuMR&VT@Sadry94BTUOee+@Zie_a0oZKz|y TC*l5q00000NkvXXu0mjfFLHb? diff --git a/resources/icons/hicolor/32x32/settingscategories/system-file-manager.svg b/resources/icons/hicolor/32x32/settingscategories/system-file-manager.svg new file mode 100644 index 0000000..1795c51 --- /dev/null +++ b/resources/icons/hicolor/32x32/settingscategories/system-file-manager.svg @@ -0,0 +1,235 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff --git a/resources/icons/hicolor/32x32/settingscategories/tag.png b/resources/icons/hicolor/32x32/settingscategories/tag.png deleted file mode 100644 index 90cd4fb61d02fe00ce570e3669f94f8ebc86ec51..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1800 zcmV+j2lx1iP)V z4Z|3mot^!}Sk~&Vp9)MuGYX8o2eTYg+oQBl#;)ALIrD(&v>{^4sAxOC~#2D{zAZxInEA_jml#-M2$ii(QXdA(j9 zkHljKqwRn zSgqD}0B!&vB50b1p`jrdhOuC6G#c$29Uc8*U|`_w4I4Hn9*^hKii!%a*Xva^P5Vhx zQ`2<-SalJGLZN`Fs_g*WLI{+WmSXGHt(cvi{Tf_R6u8~)<9F}gRpRluW*COB+wD)+ zu3h`#;Nal;qeqWkH`lV&G@?)_6c9qRbI#qWs-m{G7LiBEc? zrxPxh3!HN>#sC1Eb7V4^L$_|-y0ZA)FU&wF6bf+8+ZkhSRaLQn|9%`kd>91<1+Z8w z2nK^Vefl&uZ{7^A*9(`+1po`GUP`&_`&Sg$zI}ToW9%9Lx2mc*aNq#y>+2zefMFQW zbsbVl`2BvIJ$n{@zdr{iB1kDgL|7@y%L;7Uwk<$Jep+kpIUtbTK%?8dngb=wiCL-|J zF_1BbO`A5MrKJTvpD*{!%*3iQP+neM$vMAf7=}yNbsRZz1Pu)huvjb$;6ex}iUON9 z23sJsZ6ld?;xih}3 z0AuX?1qB7|LI}6R;XrF^E9&a%mWNOF0%K9|WCBbm$dvpDusXn`M0a;LE?&HdOeSNl zK6CHhz27ed2LOdJRs!JjWHMRga5!-Cp_`8+hra&zK6c!euy1E*ws)8|= zt9Dbs80mo=yblaN1m_$|@TZV(7D3l_bai#%#EBEQfB!y+2&$@{$Y!&DdJ!CW{w??$ z0HjhWJbwHbj4`OHx**v2SCCJ>fRX3|BZ)WOX@Oekg%ARd9z8;9YikY;;QiIY&EW;m z4}hwws_6FZ+oWk4NhyhlNK1T4)BkFt@xLCY$txd_{%nAVhz!G^j*br6y?Zw?#s~lb zIKH?Gz9>vg?Cn zo%i+iQC(dfan4Qnd#?)rn!sX-nwlDl#bP;lB9WlR#>RYj^EZJnDX>^#$BrG;*49Rs zFJGo`IBde@w*g;PAYTFian4ByVeVQ2IQDJ8R}{#Tcsvg#09gR<0T6iJ#MJpv=I`(EkH&b?cx`cM#?P0000 diff --git a/resources/icons/hicolor/32x32/settingscategories/tag.svg b/resources/icons/hicolor/32x32/settingscategories/tag.svg new file mode 100644 index 0000000..4c559b2 --- /dev/null +++ b/resources/icons/hicolor/32x32/settingscategories/tag.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/icons/hicolor/32x32/settingscategories/view-list-tree.svg b/resources/icons/hicolor/32x32/settingscategories/view-list-tree.svg new file mode 100644 index 0000000..b6af032 --- /dev/null +++ b/resources/icons/hicolor/32x32/settingscategories/view-list-tree.svg @@ -0,0 +1,18 @@ + + + + + +