We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f0caad commit cfa7717Copy full SHA for cfa7717
1 file changed
xmlPlugins/core-display/fullLcd/tcMenuLiquidCrystal.cpp
@@ -133,7 +133,7 @@ void LiquidCrystalRenderer::drawMenuItem(GridPositionRowCacheEntry* entry, Coord
133
}
134
135
void LiquidCrystalRenderer::setupEditorPlacement(int32_t x, int32_t y) {
136
- lcdEditorCursorX = min((width - 1), x);
+ lcdEditorCursorX = min(int32_t(width - 1), x);
137
lcdEditorCursorY = y;
138
139
0 commit comments