You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This occurs from running the command CLANG_SYSTEM_INCLUDE_PATH=/usr/lib/clang/12.0.0/include target/release/qt_ritual workspace -c all --local-paths true -o main -v 0.5.0 (which I'm mostly certain is the command I'm supposed to run), during the generation of qt_gui. Even if those bail! statements are commented out, a few extra Into<QFlags> implementations aren't generated, meaning the only way to call functions like QTextBlockFormat::set_alignment is to generate the QFlags manually, e.g. QFlags::from(AlignmentFlag::AlignLeft.to_int()).
Specifically, these QFlags are missing:
MouseButton
Orientation
KeyboardModifier
WindowType
AlignmentFlag
Edge
ImageConversionFlag
DockWidget
ToolBarArea
WindowState
ScreenOrientation
TextInteractionFlag
InputMethodQuery
InputMethodHint
TouchPointState
MouseEventFlag
GestureFlag
The text was updated successfully, but these errors were encountered:
This occurs from running the command
CLANG_SYSTEM_INCLUDE_PATH=/usr/lib/clang/12.0.0/include target/release/qt_ritual workspace -c all --local-paths true -o main -v 0.5.0
(which I'm mostly certain is the command I'm supposed to run), during the generation of qt_gui. Even if those bail! statements are commented out, a few extraInto<QFlags>
implementations aren't generated, meaning the only way to call functions likeQTextBlockFormat::set_alignment
is to generate the QFlags manually, e.g.QFlags::from(AlignmentFlag::AlignLeft.to_int())
.Specifically, these QFlags are missing:
The text was updated successfully, but these errors were encountered: