projects
/
platform
/
upstream
/
elementary.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1f2329e
)
elementary/win - Dont be allow under -320 to be passed thorough.
author
ChunEon Park
<hermet@hermet.pe.kr>
Wed, 21 Nov 2012 12:50:17 +0000
(12:50 +0000)
committer
ChunEon Park
<hermet@hermet.pe.kr>
Wed, 21 Nov 2012 12:50:17 +0000
(12:50 +0000)
babieri, you still read the commits!
Anyway thanks for reporting.
SVN revision: 79510
src/lib/elm_win.c
patch
|
blob
|
history
diff --git
a/src/lib/elm_win.c
b/src/lib/elm_win.c
index
a59ecc5
..
2b4862a
100644
(file)
--- a/
src/lib/elm_win.c
+++ b/
src/lib/elm_win.c
@@
-3462,8
+3462,8
@@
_win_rotation_degree_check(int rotation)
{
if ((rotation > 360) || (rotation < 0))
{
- WRN("Rotation degree should be 0 ~ 360
"
);
-
if (rotation > 360)
rotation %= 360;
+ WRN("Rotation degree should be 0 ~ 360
(passed degree: %d)", rotation
);
+ rotation %= 360;
if (rotation < 0) rotation += 360;
}
return rotation;