Missing all the small icons on submenus in Ubuntu 18.10 GNOME 3.30
I have noticed that in my Ubuntu 18.10/GNOME 3.30.1 it is missing all the small icons that should be on the left side of the application submenus.
This problem occurs in all installed software. Even those that are installed together with Ubuntu. The following screenshot shows a submenu where the icons are missing.
Applications work flawlessly, but the absence of these little icons slows the understanding of complex application functions a bit. Any help?
icons gnome-shell
add a comment |
I have noticed that in my Ubuntu 18.10/GNOME 3.30.1 it is missing all the small icons that should be on the left side of the application submenus.
This problem occurs in all installed software. Even those that are installed together with Ubuntu. The following screenshot shows a submenu where the icons are missing.
Applications work flawlessly, but the absence of these little icons slows the understanding of complex application functions a bit. Any help?
icons gnome-shell
1
This ask.fedoraproject.org/en/question/23116/… may help you, but essentally such icons are deprecated in Gnome 3.
– vanadium
Nov 24 '18 at 19:15
Thank you! Problem solved thanks to your post!
– Fábio Sousa
Nov 26 '18 at 0:18
@Fabro, would be good if you write an answer and also accept it for future reference of this site of readers with the same problem. It is perfectly fine to accept your own answer.
– vanadium
Nov 26 '18 at 9:18
add a comment |
I have noticed that in my Ubuntu 18.10/GNOME 3.30.1 it is missing all the small icons that should be on the left side of the application submenus.
This problem occurs in all installed software. Even those that are installed together with Ubuntu. The following screenshot shows a submenu where the icons are missing.
Applications work flawlessly, but the absence of these little icons slows the understanding of complex application functions a bit. Any help?
icons gnome-shell
I have noticed that in my Ubuntu 18.10/GNOME 3.30.1 it is missing all the small icons that should be on the left side of the application submenus.
This problem occurs in all installed software. Even those that are installed together with Ubuntu. The following screenshot shows a submenu where the icons are missing.
Applications work flawlessly, but the absence of these little icons slows the understanding of complex application functions a bit. Any help?
icons gnome-shell
icons gnome-shell
edited Jan 6 at 19:20
clearkimura
3,85111954
3,85111954
asked Nov 24 '18 at 14:42
Fábio SousaFábio Sousa
214
214
1
This ask.fedoraproject.org/en/question/23116/… may help you, but essentally such icons are deprecated in Gnome 3.
– vanadium
Nov 24 '18 at 19:15
Thank you! Problem solved thanks to your post!
– Fábio Sousa
Nov 26 '18 at 0:18
@Fabro, would be good if you write an answer and also accept it for future reference of this site of readers with the same problem. It is perfectly fine to accept your own answer.
– vanadium
Nov 26 '18 at 9:18
add a comment |
1
This ask.fedoraproject.org/en/question/23116/… may help you, but essentally such icons are deprecated in Gnome 3.
– vanadium
Nov 24 '18 at 19:15
Thank you! Problem solved thanks to your post!
– Fábio Sousa
Nov 26 '18 at 0:18
@Fabro, would be good if you write an answer and also accept it for future reference of this site of readers with the same problem. It is perfectly fine to accept your own answer.
– vanadium
Nov 26 '18 at 9:18
1
1
This ask.fedoraproject.org/en/question/23116/… may help you, but essentally such icons are deprecated in Gnome 3.
– vanadium
Nov 24 '18 at 19:15
This ask.fedoraproject.org/en/question/23116/… may help you, but essentally such icons are deprecated in Gnome 3.
– vanadium
Nov 24 '18 at 19:15
Thank you! Problem solved thanks to your post!
– Fábio Sousa
Nov 26 '18 at 0:18
Thank you! Problem solved thanks to your post!
– Fábio Sousa
Nov 26 '18 at 0:18
@Fabro, would be good if you write an answer and also accept it for future reference of this site of readers with the same problem. It is perfectly fine to accept your own answer.
– vanadium
Nov 26 '18 at 9:18
@Fabro, would be good if you write an answer and also accept it for future reference of this site of readers with the same problem. It is perfectly fine to accept your own answer.
– vanadium
Nov 26 '18 at 9:18
add a comment |
2 Answers
2
active
oldest
votes
Thanks to @vanadium, I was able to fix this problem by following the instructions as follows.
From the accepted answer in this link:
Both gtk-menu-image and gtk-button-images were deprecated and ignored, after that they made them deprecated but not ignored: https://git.gnome.org/browse/gtk+/commit/?id=627a03683f5f41efbfc86cc0f10e1b7c11e9bb25 https://git.gnome.org/browse/gtk+/commit/?id=c46aca463a9d66cf402ec8c3f9f2e2efc98c42ca
the problem is the gsettings keys (org.gnome.desktop.interface buttons-have-icons and menus-have-icons) are gone so I don't see a way to set them...
However it seems you can set the relevant GtkSettings via the gnome-settings-daemon xsettings plguin: open dconf-editor -> org.gnome.settings-daemon.plugins.xsettings and change the overrides key from:
{}
to:
{'Gtk/ButtonImages': <1>, 'Gtk/MenuImages': <1>}
usually the change is instantaneous (e.g. in gimp), but some apps need to be restarted (e.g. firefox).
Or just use gsettings:
gsettings set org.gnome.settings-daemon.plugins.xsettings overrides "{'Gtk/ButtonImages': <1>, 'Gtk/MenuImages': <1>}"
but note that this method overwrites the current value of that key; one obvious caveat is if you've previously enabled pasting with the middle click from gnome-tweak-tool -> "keyboard and mouse", you'll need to re-set it there again (unlike the above gsettings command, gnome-tweak-tool "adds" new values to the overrides key and doesn't blindly overwrite it).
Edit: testing recently, it seems now that toggling either of these settings in gnome-tweak-tool remove the custom values added above:
- Top Bar -> "show application menu"
- Keyboard and mouse -> middle-click paste so if you toggle any of those settings you'll have to re-add the 'Gtk/ButtonImages': <1>, 'Gtk/MenuImages': <1> bits.
add a comment |
These icons are deprecated. Fortunately, Kicad has an FAQ on how to enable them:
In the terminal, do:
gsettings set org.gnome.desktop.interface menus-have-icons true
gsettings set org.gnome.desktop.interface buttons-have-icons true
(To disable them again, run the same commands, but replace true
with false
.)
Thank you. I had tried these commands, but nothing changed. I think it's really a Gnome incompatibility with these icons.
– Fábio Sousa
Nov 26 '18 at 0:05
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1095662%2fmissing-all-the-small-icons-on-submenus-in-ubuntu-18-10-gnome-3-30%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks to @vanadium, I was able to fix this problem by following the instructions as follows.
From the accepted answer in this link:
Both gtk-menu-image and gtk-button-images were deprecated and ignored, after that they made them deprecated but not ignored: https://git.gnome.org/browse/gtk+/commit/?id=627a03683f5f41efbfc86cc0f10e1b7c11e9bb25 https://git.gnome.org/browse/gtk+/commit/?id=c46aca463a9d66cf402ec8c3f9f2e2efc98c42ca
the problem is the gsettings keys (org.gnome.desktop.interface buttons-have-icons and menus-have-icons) are gone so I don't see a way to set them...
However it seems you can set the relevant GtkSettings via the gnome-settings-daemon xsettings plguin: open dconf-editor -> org.gnome.settings-daemon.plugins.xsettings and change the overrides key from:
{}
to:
{'Gtk/ButtonImages': <1>, 'Gtk/MenuImages': <1>}
usually the change is instantaneous (e.g. in gimp), but some apps need to be restarted (e.g. firefox).
Or just use gsettings:
gsettings set org.gnome.settings-daemon.plugins.xsettings overrides "{'Gtk/ButtonImages': <1>, 'Gtk/MenuImages': <1>}"
but note that this method overwrites the current value of that key; one obvious caveat is if you've previously enabled pasting with the middle click from gnome-tweak-tool -> "keyboard and mouse", you'll need to re-set it there again (unlike the above gsettings command, gnome-tweak-tool "adds" new values to the overrides key and doesn't blindly overwrite it).
Edit: testing recently, it seems now that toggling either of these settings in gnome-tweak-tool remove the custom values added above:
- Top Bar -> "show application menu"
- Keyboard and mouse -> middle-click paste so if you toggle any of those settings you'll have to re-add the 'Gtk/ButtonImages': <1>, 'Gtk/MenuImages': <1> bits.
add a comment |
Thanks to @vanadium, I was able to fix this problem by following the instructions as follows.
From the accepted answer in this link:
Both gtk-menu-image and gtk-button-images were deprecated and ignored, after that they made them deprecated but not ignored: https://git.gnome.org/browse/gtk+/commit/?id=627a03683f5f41efbfc86cc0f10e1b7c11e9bb25 https://git.gnome.org/browse/gtk+/commit/?id=c46aca463a9d66cf402ec8c3f9f2e2efc98c42ca
the problem is the gsettings keys (org.gnome.desktop.interface buttons-have-icons and menus-have-icons) are gone so I don't see a way to set them...
However it seems you can set the relevant GtkSettings via the gnome-settings-daemon xsettings plguin: open dconf-editor -> org.gnome.settings-daemon.plugins.xsettings and change the overrides key from:
{}
to:
{'Gtk/ButtonImages': <1>, 'Gtk/MenuImages': <1>}
usually the change is instantaneous (e.g. in gimp), but some apps need to be restarted (e.g. firefox).
Or just use gsettings:
gsettings set org.gnome.settings-daemon.plugins.xsettings overrides "{'Gtk/ButtonImages': <1>, 'Gtk/MenuImages': <1>}"
but note that this method overwrites the current value of that key; one obvious caveat is if you've previously enabled pasting with the middle click from gnome-tweak-tool -> "keyboard and mouse", you'll need to re-set it there again (unlike the above gsettings command, gnome-tweak-tool "adds" new values to the overrides key and doesn't blindly overwrite it).
Edit: testing recently, it seems now that toggling either of these settings in gnome-tweak-tool remove the custom values added above:
- Top Bar -> "show application menu"
- Keyboard and mouse -> middle-click paste so if you toggle any of those settings you'll have to re-add the 'Gtk/ButtonImages': <1>, 'Gtk/MenuImages': <1> bits.
add a comment |
Thanks to @vanadium, I was able to fix this problem by following the instructions as follows.
From the accepted answer in this link:
Both gtk-menu-image and gtk-button-images were deprecated and ignored, after that they made them deprecated but not ignored: https://git.gnome.org/browse/gtk+/commit/?id=627a03683f5f41efbfc86cc0f10e1b7c11e9bb25 https://git.gnome.org/browse/gtk+/commit/?id=c46aca463a9d66cf402ec8c3f9f2e2efc98c42ca
the problem is the gsettings keys (org.gnome.desktop.interface buttons-have-icons and menus-have-icons) are gone so I don't see a way to set them...
However it seems you can set the relevant GtkSettings via the gnome-settings-daemon xsettings plguin: open dconf-editor -> org.gnome.settings-daemon.plugins.xsettings and change the overrides key from:
{}
to:
{'Gtk/ButtonImages': <1>, 'Gtk/MenuImages': <1>}
usually the change is instantaneous (e.g. in gimp), but some apps need to be restarted (e.g. firefox).
Or just use gsettings:
gsettings set org.gnome.settings-daemon.plugins.xsettings overrides "{'Gtk/ButtonImages': <1>, 'Gtk/MenuImages': <1>}"
but note that this method overwrites the current value of that key; one obvious caveat is if you've previously enabled pasting with the middle click from gnome-tweak-tool -> "keyboard and mouse", you'll need to re-set it there again (unlike the above gsettings command, gnome-tweak-tool "adds" new values to the overrides key and doesn't blindly overwrite it).
Edit: testing recently, it seems now that toggling either of these settings in gnome-tweak-tool remove the custom values added above:
- Top Bar -> "show application menu"
- Keyboard and mouse -> middle-click paste so if you toggle any of those settings you'll have to re-add the 'Gtk/ButtonImages': <1>, 'Gtk/MenuImages': <1> bits.
Thanks to @vanadium, I was able to fix this problem by following the instructions as follows.
From the accepted answer in this link:
Both gtk-menu-image and gtk-button-images were deprecated and ignored, after that they made them deprecated but not ignored: https://git.gnome.org/browse/gtk+/commit/?id=627a03683f5f41efbfc86cc0f10e1b7c11e9bb25 https://git.gnome.org/browse/gtk+/commit/?id=c46aca463a9d66cf402ec8c3f9f2e2efc98c42ca
the problem is the gsettings keys (org.gnome.desktop.interface buttons-have-icons and menus-have-icons) are gone so I don't see a way to set them...
However it seems you can set the relevant GtkSettings via the gnome-settings-daemon xsettings plguin: open dconf-editor -> org.gnome.settings-daemon.plugins.xsettings and change the overrides key from:
{}
to:
{'Gtk/ButtonImages': <1>, 'Gtk/MenuImages': <1>}
usually the change is instantaneous (e.g. in gimp), but some apps need to be restarted (e.g. firefox).
Or just use gsettings:
gsettings set org.gnome.settings-daemon.plugins.xsettings overrides "{'Gtk/ButtonImages': <1>, 'Gtk/MenuImages': <1>}"
but note that this method overwrites the current value of that key; one obvious caveat is if you've previously enabled pasting with the middle click from gnome-tweak-tool -> "keyboard and mouse", you'll need to re-set it there again (unlike the above gsettings command, gnome-tweak-tool "adds" new values to the overrides key and doesn't blindly overwrite it).
Edit: testing recently, it seems now that toggling either of these settings in gnome-tweak-tool remove the custom values added above:
- Top Bar -> "show application menu"
- Keyboard and mouse -> middle-click paste so if you toggle any of those settings you'll have to re-add the 'Gtk/ButtonImages': <1>, 'Gtk/MenuImages': <1> bits.
edited Jan 6 at 19:28
clearkimura
3,85111954
3,85111954
answered Dec 2 '18 at 0:57
Fábio SousaFábio Sousa
214
214
add a comment |
add a comment |
These icons are deprecated. Fortunately, Kicad has an FAQ on how to enable them:
In the terminal, do:
gsettings set org.gnome.desktop.interface menus-have-icons true
gsettings set org.gnome.desktop.interface buttons-have-icons true
(To disable them again, run the same commands, but replace true
with false
.)
Thank you. I had tried these commands, but nothing changed. I think it's really a Gnome incompatibility with these icons.
– Fábio Sousa
Nov 26 '18 at 0:05
add a comment |
These icons are deprecated. Fortunately, Kicad has an FAQ on how to enable them:
In the terminal, do:
gsettings set org.gnome.desktop.interface menus-have-icons true
gsettings set org.gnome.desktop.interface buttons-have-icons true
(To disable them again, run the same commands, but replace true
with false
.)
Thank you. I had tried these commands, but nothing changed. I think it's really a Gnome incompatibility with these icons.
– Fábio Sousa
Nov 26 '18 at 0:05
add a comment |
These icons are deprecated. Fortunately, Kicad has an FAQ on how to enable them:
In the terminal, do:
gsettings set org.gnome.desktop.interface menus-have-icons true
gsettings set org.gnome.desktop.interface buttons-have-icons true
(To disable them again, run the same commands, but replace true
with false
.)
These icons are deprecated. Fortunately, Kicad has an FAQ on how to enable them:
In the terminal, do:
gsettings set org.gnome.desktop.interface menus-have-icons true
gsettings set org.gnome.desktop.interface buttons-have-icons true
(To disable them again, run the same commands, but replace true
with false
.)
answered Nov 24 '18 at 20:26
Nonny MooseNonny Moose
922621
922621
Thank you. I had tried these commands, but nothing changed. I think it's really a Gnome incompatibility with these icons.
– Fábio Sousa
Nov 26 '18 at 0:05
add a comment |
Thank you. I had tried these commands, but nothing changed. I think it's really a Gnome incompatibility with these icons.
– Fábio Sousa
Nov 26 '18 at 0:05
Thank you. I had tried these commands, but nothing changed. I think it's really a Gnome incompatibility with these icons.
– Fábio Sousa
Nov 26 '18 at 0:05
Thank you. I had tried these commands, but nothing changed. I think it's really a Gnome incompatibility with these icons.
– Fábio Sousa
Nov 26 '18 at 0:05
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1095662%2fmissing-all-the-small-icons-on-submenus-in-ubuntu-18-10-gnome-3-30%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
This ask.fedoraproject.org/en/question/23116/… may help you, but essentally such icons are deprecated in Gnome 3.
– vanadium
Nov 24 '18 at 19:15
Thank you! Problem solved thanks to your post!
– Fábio Sousa
Nov 26 '18 at 0:18
@Fabro, would be good if you write an answer and also accept it for future reference of this site of readers with the same problem. It is perfectly fine to accept your own answer.
– vanadium
Nov 26 '18 at 9:18