Fix signedness of x properties
Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
This commit is contained in:
@@ -24,10 +24,10 @@ typedef struct {
|
||||
|
||||
/// A structure representing margins around a rectangle.
|
||||
typedef struct {
|
||||
int top;
|
||||
int left;
|
||||
int bottom;
|
||||
int right;
|
||||
unsigned int top;
|
||||
unsigned int left;
|
||||
unsigned int bottom;
|
||||
unsigned int right;
|
||||
} margin_t;
|
||||
|
||||
typedef uint32_t opacity_t;
|
||||
|
||||
Reference in New Issue
Block a user