Sorry, forgot to mention: it's Android.

For now i have to use this ugly workaround:

@Override
    protected void onResume()
    {
        super.onResume();

        // timer based workaround due to the bug:
        // https://bugreports.qt.io/browse/QTBUG-70114
        Timer timer = new Timer();
        timer.schedule(new TimerTask()
        {
            public void run()
            {
                MyJavaNatives.onActivityPaused(0, false);
            }
        }, 3000);
    }


Instead of just this:


@Override
    protected void onResume()
    {
        super.onResume();
        MyJavaNatives.onActivityPaused(0, false);
    }

On 7/8/2019 7:16 PM, Alexander Dyagilev wrote:
Is it OK that this bug exists so long? Maybe I'm doing something wrong?

https://bugreports.qt.io/browse/QTBUG-76956

_______________________________________________
Interest mailing list
[email protected]
https://lists.qt-project.org/listinfo/interest

Reply via email to