Fix error during rotation

Fix https://github.com/GNS3/gns3-gui/issues/1474
pull/712/head
Julien Duponchelle 8 years ago
parent bc5b5969eb
commit 0bbda4a5d7
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

@ -50,7 +50,7 @@ DRAWING_OBJECT_SCHEMA = {
"rotation": {
"description": "Rotation of the element",
"type": "integer",
"minimum": 0,
"minimum": -359,
"maximum": 360
},
"svg": {

@ -33,7 +33,9 @@ LABEL_OBJECT_SCHEMA = {
},
"rotation": {
"description": "Rotation of the label",
"type": "integer"
"type": "integer",
"minimum": -359,
"maximum": 360
},
},
"required": [

Loading…
Cancel
Save