gtk icon indicating copy to clipboard operation
gtk copied to clipboard

Theme directory actions/* of theme Dracula has no size field

Open jdnumm opened this issue 2 years ago • 4 comments

GTK Applications are trowing warnings on startup:

(org.pwmt.zathura:22354): Gtk-WARNING **: 14:09:23.563: Theme directory actions/24 of theme Dracula has no size field


(org.pwmt.zathura:22354): Gtk-WARNING **: 14:09:23.563: Theme directory actions/32 of theme Dracula has no size field


(org.pwmt.zathura:22354): Gtk-WARNING **: 14:09:23.563: Theme directory actions/16@2x of theme Dracula has no size field


(org.pwmt.zathura:22354): Gtk-WARNING **: 14:09:23.563: Theme directory actions/22@2x of theme Dracula has no size field


(org.pwmt.zathura:22354): Gtk-WARNING **: 14:09:23.563: Theme directory actions/24@2x of theme Dracula has no size field


(org.pwmt.zathura:22354): Gtk-WARNING **: 14:09:23.563: Theme directory actions/32@2x of theme Dracula has no size field


(org.pwmt.zathura:22354): Gtk-WARNING **: 14:09:23.563: Theme directory actions/symbolic of theme Dracula has no size field

jdnumm avatar Aug 22 '22 12:08 jdnumm

HI, that's an issue with your icon theme not gtk.

EliverLara avatar Aug 30 '22 19:08 EliverLara

@EliverLara ok, but the icons are part of the GTK Dracula theme.

https://draculatheme.com/gtk

jdnumm avatar Sep 16 '22 08:09 jdnumm

Are there manual edits that can be made to address this issue?

Also experienced with redshift-gtk

(redshift-gtk:205693): Gtk-WARNING **: 12:56:35.368: Theme directory actions/24 of theme Dracula has no size field
(redshift-gtk:205693): Gtk-WARNING **: 12:56:35.368: Theme directory actions/32 of theme Dracula has no size field
(redshift-gtk:205693): Gtk-WARNING **: 12:56:35.368: Theme directory actions/16@2x of theme Dracula has no size field
(redshift-gtk:205693): Gtk-WARNING **: 12:56:35.368: Theme directory actions/22@2x of theme Dracula has no size field
(redshift-gtk:205693): Gtk-WARNING **: 12:56:35.368: Theme directory actions/24@2x of theme Dracula has no size field
(redshift-gtk:205693): Gtk-WARNING **: 12:56:35.368: Theme directory actions/32@2x of theme Dracula has no size field
(redshift-gtk:205693): Gtk-WARNING **: 12:56:35.368: Theme directory actions/symbolic of theme Dracula has no size field

CBroz1 avatar Feb 28 '23 19:02 CBroz1

I added the lines below to /usr/share/Dracula/index.theme, the location of which may differ based on installation. These solved the warnings.

I get the sense that these warnings are due to a mismatch of design spec across GTK 2 v 3, SO post. I don't know what I'm doing here, so copy at your own risk.

[actions/24] 
Context=Actions
Size=24
Type=Fixed

[actions/32] 
Context=Actions
Size=32
Type=Fixed

[actions/32] 
Context=Actions
Size=32
Type=Fixed

[actions/16@2x] 
Context=Actions
Size=16
Type=Fixed

[actions/22@2x] 
Context=Actions
Size=22
Type=Fixed

[actions/24@2x] 
Context=Actions
Size=24
Type=Fixed

[actions/32@2x] 
Context=Actions
Size=32
Type=Fixed

[actions/symbolic] 
Context=Actions
Size=22
Type=Fixed

CBroz1 avatar Mar 28 '23 19:03 CBroz1