[Tokodon] [Bug 480689] Tokodon crashes / shuts down when logging in
Arsen Arsenović
bugzilla_noreply at kde.org
Mon Feb 5 21:07:51 GMT 2024
https://bugs.kde.org/show_bug.cgi?id=480689
Arsen Arsenović <arsen at aarsen.me> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |arsen at aarsen.me
--- Comment #3 from Arsen Arsenović <arsen at aarsen.me> ---
Created attachment 165581
--> https://bugs.kde.org/attachment.cgi?id=165581&action=edit
backtrace
can reprod, but in my case when launching while already logged in - i am
guessing this is a kirigami bug. i reduced the crash to a property:
diff --git a/src/content/ui/Main.qml b/src/content/ui/Main.qml
index 512d9d8..0d3a983 100644
--- a/src/content/ui/Main.qml
+++ b/src/content/ui/Main.qml
@@ -277,7 +277,7 @@ Kirigami.ApplicationWindow {
globalDrawer: Kirigami.OverlayDrawer {
id: drawer
- enabled: AccountManager.hasAccounts && AccountManager.isReady
+ enabled: true || (AccountManager.hasAccounts &&
AccountManager.isReady)
edge: Qt.application.layoutDirection === Qt.RightToLeft ? Qt.RightEdge
: Qt.LeftEdge
modal: !enabled || Kirigami.Settings.isMobile ||
Kirigami.Settings.tabletMode || (applicationWindow().width <
Kirigami.Units.gridUnit * 50 && !collapsed) // Only modal when not collapsed,
otherwise collapsed won't show.
z: modal ? Math.round(position * 10000000) : 100
obviously, the above is a nonfix.
the trace generated by the program is attached. I couldn't get a QML dump due
to the QML stack trace script thing running into an optimized out value while
trying to generate one, so I can't provide that info as of right now :/
--
You are receiving this mail because:
You are the assignee for the bug.
More information about the Unassigned-bugs
mailing list