mirror of https://github.com/buggins/dlangui.git
remove unnecessary logging
This commit is contained in:
parent
740857d7bd
commit
9ce0c2a488
|
@ -190,8 +190,6 @@ immutable int SIZE_IN_PERCENTS_FLAG = 0x0800_0000;
|
||||||
/// convert custom size to pixels (sz can be either pixels, or points if SIZE_IN_POINTS_FLAG bit set)
|
/// convert custom size to pixels (sz can be either pixels, or points if SIZE_IN_POINTS_FLAG bit set)
|
||||||
int toPixels(int sz) {
|
int toPixels(int sz) {
|
||||||
if (sz > 0 && (sz & SIZE_IN_POINTS_FLAG) != 0) {
|
if (sz > 0 && (sz & SIZE_IN_POINTS_FLAG) != 0) {
|
||||||
import dlangui.core.logger;
|
|
||||||
Log.d("size in points");
|
|
||||||
return pointsToPixels(sz ^ SIZE_IN_POINTS_FLAG);
|
return pointsToPixels(sz ^ SIZE_IN_POINTS_FLAG);
|
||||||
}
|
}
|
||||||
return sz;
|
return sz;
|
||||||
|
|
Loading…
Reference in New Issue