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
fix: Use 32-bit integers in puregotk to match with actual C int types, which are always 32-bit on LLP64 systems, drop manual newTypeQuery hack in favour of the puregotk gobject.TypeQuery
uint(parentQuery.InstanceSize)+uint(unsafe.Sizeof(ErrorDialog{}))+uint(unsafe.Sizeof(&ErrorDialog{}))+uint(unsafe.Sizeof(adw.AlertDialog{})), // TODO: Figure out why we need the extra `adw.AlertDialog` here
128
+
parentQuery.InstanceSize+uint32(unsafe.Sizeof(ErrorDialog{}))+uint32(unsafe.Sizeof(&ErrorDialog{}))+uint32(unsafe.Sizeof(adw.AlertDialog{})), // TODO: Figure out why we need the extra `adw.AlertDialog` here
0 commit comments