Merge pull request #27838 from akien-mga/Wlogical-op
Fix condition in editor icons filtering logic
This commit is contained in:
commit
bde77dc0b4
1 changed files with 1 additions and 1 deletions
|
@ -204,7 +204,7 @@ void editor_register_and_generate_icons(Ref<Theme> p_theme, bool p_dark_theme =
|
|||
}
|
||||
|
||||
// generate thumb files with the given thumb size
|
||||
bool force_filter = !(p_thumb_size == 64 && p_thumb_size == 32); // we don't need filter with original resolution
|
||||
bool force_filter = p_thumb_size != 64 && p_thumb_size != 32; // we don't need filter with original resolution
|
||||
if (p_thumb_size >= 64) {
|
||||
float scale = (float)p_thumb_size / 64.0 * EDSCALE;
|
||||
for (int i = 0; i < editor_bg_thumbs_count; i++) {
|
||||
|
|
Loading…
Reference in a new issue