Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ui] Fix all "TypeError" QML warnings #1839

Merged
merged 1 commit into from
Dec 6, 2022
Merged

Commits on Dec 6, 2022

  1. [ui] Check that objects accessed by QML properties are not null befor…

    …e accessing them
    
    Some QML properties access exposed Python objects that may or may not
    be null upon their access. When these objects are accessed while null,
    QML issues "TypeError" warnings. These warnings have no functional
    impact as QML correctly handles trying to access null objects, but can
    spam the logs.
    
    This commit aims at fixing all these warnings by checking that the
    Python objects are not null before being accessed.
    cbentejac committed Dec 6, 2022
    Configuration menu
    Copy the full SHA
    02383c6 View commit details
    Browse the repository at this point in the history