Solve issue #35

This commit is contained in:
Francesco Galizzi
2021-12-31 17:23:11 +01:00
parent c697466686
commit bd71b09d9b
2 changed files with 4 additions and 4 deletions

View File

@@ -30,8 +30,8 @@ std::string get_socketpath();
* Primitive of rectangle
*/
struct rect_t {
uint32_t x; ///< Position on X axis
uint32_t y; ///< Position on Y axis
int32_t x; ///< Position on X axis
int32_t y; ///< Position on Y axis
uint32_t width; ///< Width of rectangle
uint32_t height; ///< Height of rectangle
};