From 281a0ed9b07ae35d992e97d5db79d0516b69be24 Mon Sep 17 00:00:00 2001 From: Ouaz Date: Sun, 28 Jan 2024 19:56:40 +0100 Subject: [PATCH] Move Warehousing icon outside the checkbox to make the building setting more noticeable. Use the checkmark icon for toggle on/off Decrease saturation of Warehousing icon --- res/assets/Graphics/UI/Warehousing.png | Bin 446 -> 463 bytes src/window/building/distribution.c | 5 +++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/res/assets/Graphics/UI/Warehousing.png b/res/assets/Graphics/UI/Warehousing.png index 532d19f0f36208ee21a2c5c5d5485fd9c61f4ee9..c6ab1d1bc9ec62292bd0bee16eaaf6efe9f7be79 100644 GIT binary patch delta 383 zcmV-_0f7F#1J47HS$|cO|zWL7p5I~HbMiT$y{7o46l;v?MUOR0ggNK(1!`wxu82|!^MUsPs zfti_w!J}*oL$JtShV5@y7(7M(pwNr6Oc=g?{R-9$5I{^I;(!1D{|vGW%nT{H9t`S? zEDXt6E+{le@ynO5z#0Go2(01r=T8hQ42%rlUcLd6{~5lZ(ICZt|NaGQ00O2q3TqW)>Ep#f%JVHe6!(_KSsK{pM>ZG)VFHFOWC_ z2p|>^!NJbXP!cK4@B`!rARC=#VP$35c0S$|MTL_t(|+G6~Dyn=znqMgBBO6tFlGy_2Z5I~Io|NjRoUR$fr z@bU8xoC;4JzRB?91p@;>05SGBivEueHD=&bRKTft?bMA79=^s5b7r4q004;6#xDG2dn`gfWR7l{rbhg4rDO`jpN{8U|?cGr9p~8&ISR10D}7AAKtJB zDdyzn1hWAG2xqJT6iPpVdRDKz%m50Eb!)Dp&>+R%zkUa600x_offset + primary_product_producer_button_stockpiling->x; int y = c->y_offset + primary_product_producer_button_stockpiling->y + BLOCK_SIZE * c->height_blocks - 40; button_border_draw(x, y, 20, 20, data.primary_product_stockpiling_id); + image_draw(assets_get_image_id("UI", "Warehousing"), x + 23, y + 4, COLOR_MASK_NONE, SCALE_NONE); if (building_stockpiling_enabled(building_get(c->building_id))) { - image_draw(assets_get_image_id("UI", "Warehousing"), x + 4, y + 4, COLOR_MASK_NONE, SCALE_NONE); + image_draw(assets_get_image_id("UI", "Allowed_Walker_Check"), x + 4, y + 4, COLOR_MASK_NONE, SCALE_NONE); } }