Reorder resolution options in OLED frame

This commit is contained in:
andbad
2026-05-12 18:43:47 +02:00
committed by GitHub
parent f7e285bc85
commit 64de7977fc
+3 -2
View File
@@ -305,8 +305,9 @@ boolean Plugin_036(uint8_t function, struct EventStruct *event, String& string)
const int optionValues[] =
{ static_cast<int>(p036_resolution::pix128x64),
static_cast<int>(p036_resolution::pix128x32),
static_cast<int>(p036_resolution::pix72x40),
static_cast<int>(p036_resolution::pix64x48) };
static_cast<int>(p036_resolution::pix64x48),
static_cast<int>(p036_resolution::pix72x40)
};
OLedFormSizes(F("size"), optionValues, P036_RESOLUTION, true);
}