mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-06 10:31:34 -08:00
12 lines
223 B
Text
12 lines
223 B
Text
#include "qt.h"
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
QVariant QT::keepScreenOn(const QVariant& on) {
|
|
[UIApplication sharedApplication].idleTimerDisabled = on.toBool() ? YES : NO;
|
|
return on;
|
|
}
|
|
|
|
QT_END_NAMESPACE
|