Unreal tidbit: opening a widget blueprint in the editor (with the goal of editing that blueprint) can result in calls to that blueprint base's functions, so you better have nullptr/IsValid checks on everything external to your widget that you might be setting up in your init step.
(IsValid() checks are a good practice anyway, and this is just one of the easier ways to see why)