https://bugs.kde.org/show_bug.cgi?id=372964

--- Comment #5 from Toni Asensi Esteve <toni.ase...@kdemail.net> ---
Information about the icons:

In the source code of Krusader, in the viewactions.cpp file, we can see:
    actSelect = action(i18n("Select &Group..."), "edit-select", Qt::CTRL +
Qt::Key_Plus, SLOT(markGroup()), "select group");
    actSelectAll = action(i18n("&Select All"), "edit-select-all", Qt::ALT +
Qt::Key_Plus, SLOT(markAll()), "select all");
    [...]
    actUnselectAll = action(i18n("U&nselect All"), "edit-select-none", Qt::ALT
+ Qt::Key_Minus, SLOT(unmarkAll()), "unselect all");
and therefore we can see that each action has to have a related icon
("edit-select", "edit-select-all" and "edit-select-none"). 

It it's executed     
    $ find / -iname "*edit-select.*" 2>/dev/null        
    /usr/share/icons/breeze-dark/actions/22/edit-select.svg
    /usr/share/icons/breeze-dark/actions/16/edit-select.svg
    /usr/share/icons/breeze-dark/actions/24/edit-select.svg
    /usr/share/icons/breeze/actions/22/edit-select.svg
    /usr/share/icons/breeze/actions/16/edit-select.svg
    /usr/share/icons/breeze/actions/24/edit-select.svg
    /usr/share/icons/oxygen/16x16/actions/edit-select.png
    /usr/share/icons/oxygen/22x22/actions/edit-select.png
    /usr/share/icons/oxygen/48x48/actions/edit-select.png
    /usr/share/icons/oxygen/32x32/actions/edit-select.png
then we can see that there are Oxygen icons for "edit-select" (altough they
show only a generic image of a mouse arrow, unlike its Breeze equivalent, which
shows a mouse arrow and a distinctive little circle).

If using Kubuntu 16.04 it's executed
    $ find / -iname "*edit-select-all*" 2>/dev/null
    /usr/share/icons/Adwaita/scalable/actions/edit-select-all-symbolic.svg
    /usr/share/icons/Humanity/actions/48/edit-select-all.svg
    /usr/share/icons/Humanity/actions/22/edit-select-all.svg
    /usr/share/icons/Humanity/actions/16/edit-select-all.svg
    /usr/share/icons/Humanity/actions/24/edit-select-all.svg
    /usr/share/icons/breeze-dark/actions/22/edit-select-all.svg
    /usr/share/icons/breeze-dark/actions/16/edit-select-all.svg
    /usr/share/icons/breeze-dark/actions/16/edit-select-all-layers.svg
    /usr/share/icons/breeze-dark/actions/24/edit-select-all.svg
    /usr/share/icons/breeze/actions/22/edit-select-all.svg
    /usr/share/icons/breeze/actions/16/edit-select-all.svg
    /usr/share/icons/breeze/actions/16/edit-select-all-layers.svg
    /usr/share/icons/breeze/actions/24/edit-select-all.svg
    /usr/share/icons/oxygen/16x16/actions/edit-select-all.png
    /usr/share/icons/oxygen/22x22/actions/edit-select-all.png
    /usr/share/icons/oxygen/48x48/actions/edit-select-all.png
    /usr/share/icons/oxygen/32x32/actions/edit-select-all.png
then we can see that there are Oxygen icons for "edit-select-all".

It it's executed     
    $ find / -iname "*edit-select-none*" 2>/dev/null
    /usr/share/icons/breeze-dark/actions/22/edit-select-none.svg
    /usr/share/icons/breeze-dark/actions/16/edit-select-none.svg
    /usr/share/icons/breeze-dark/actions/24/edit-select-none.svg
    /usr/share/icons/breeze/actions/22/edit-select-none.svg
    /usr/share/icons/breeze/actions/16/edit-select-none.svg
    /usr/share/icons/breeze/actions/24/edit-select-none.svg
then we can see that there are not Oxygen icons for "edit-select-none".

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to