| 279 | } |
| 280 | |
| 281 | LayoutManager::LayoutList LayoutManager::drawButtonLayoutRight() |
| 282 | { |
| 283 | const DisplayOptions& options = Storage::getInstance().getDisplayOptions(); |
| 284 | ButtonLayoutCustomOptions buttonLayoutCustomOptions = options.buttonLayoutCustomOptions; |
| 285 | ButtonLayoutParamsRight rightOptions = buttonLayoutCustomOptions.paramsRight; |
| 286 | return adjustByCustomSettings(getRightLayout(rightOptions.layout), rightOptions.common, 64); |
| 287 | } |
| 288 | |
| 289 | LayoutManager::LayoutList LayoutManager::adjustByCustomSettings(LayoutManager::LayoutList layout, ButtonLayoutParamsCommon common, uint16_t originX, uint16_t originY) { |
| 290 | if (layout.size() > 0) { |
no test coverage detected