Added cancellation points. Added new flip xy option. Refactor and waring removal.

This commit is contained in:
tamasmeszaros 2018-12-12 11:36:02 +01:00
parent 98f9c4f56d
commit 68de2d9813
8 changed files with 119 additions and 84 deletions

View file

@ -1035,6 +1035,7 @@ public:
ConfigOptionFloat display_height;
ConfigOptionInt display_pixels_x;
ConfigOptionInt display_pixels_y;
ConfigOptionBool display_flip_xy;
ConfigOptionFloats printer_correction;
protected:
void initialize(StaticCacheBase &cache, const char *base_ptr)
@ -1046,6 +1047,7 @@ protected:
OPT_PTR(display_height);
OPT_PTR(display_pixels_x);
OPT_PTR(display_pixels_y);
OPT_PTR(display_flip_xy);
OPT_PTR(printer_correction);
}
};