Fix indentation back to 4

This commit is contained in:
2022-11-08 19:18:18 +01:00
parent cc2316a497
commit 0081d219f9
11 changed files with 68 additions and 66 deletions

View File

@@ -5,17 +5,17 @@
namespace ptprnt::printer {
enum class colorMode {
monochrome = 0,
color = 0,
monochrome = 0,
color = 0,
};
struct info {
std::string name{""};
std::string revision{""};
uint32_t xres = {0};
uint32_t yres = {0};
colorMode color = {colorMode::monochrome};
bool cutter = {false};
std::string name{""};
std::string revision{""};
uint32_t xres = {0};
uint32_t yres = {0};
colorMode color = {colorMode::monochrome};
bool cutter = {false};
};
} // namespace ptprnt::printer