Skip to content

Commit

Permalink
Fix after rebase.
Browse files Browse the repository at this point in the history
  • Loading branch information
philmoz committed Jan 22, 2025
1 parent 0d32786 commit 3ed3bc2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions radio/src/gui/colorlcd/model/function_switches.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -184,12 +184,12 @@ class FunctionSwitch : public Window
static constexpr coord_t C2_X = C1_X + C1_W + PAD_SMALL;
static constexpr coord_t C2_W = 40;
#else
static constexpr coord_t SW_W = (LCD_W - PAD_SMALL * 2 - PAD_TINY_GAP * 4) / 5;
static constexpr coord_t NM_X = SW_W + PAD_TINY_GAP;
static constexpr coord_t SW_W = (LCD_W - PAD_SMALL * 2 - PAD_TINY * 4) / 5;
static constexpr coord_t NM_X = SW_W + PAD_TINY;
static constexpr coord_t NM_W = 80;
static constexpr coord_t TP_X = NM_X + SW_W + PAD_TINY_GAP;
static constexpr coord_t TP_X = NM_X + SW_W + PAD_TINY;
static constexpr coord_t TP_W = 86;
static constexpr coord_t GR_X = TP_X + SW_W + PAD_TINY_GAP;
static constexpr coord_t GR_X = TP_X + SW_W + PAD_TINY;
static constexpr coord_t GR_W = 94;
static constexpr coord_t ST_X = GR_X + SW_W + 20;
static constexpr coord_t ST_W = 70;
Expand Down

0 comments on commit 3ed3bc2

Please sign in to comment.