Fix theming issues with the ObjectDB profiler

This commit is contained in:
Michael Alexsander 2026-01-06 20:10:56 -03:00
parent 82bc54c7d6
commit ce648d13e3
No known key found for this signature in database
GPG key ID: A9C91EE110F4EABA
8 changed files with 52 additions and 24 deletions

View file

@ -50,7 +50,9 @@ public:
class SnapshotSummaryView : public SnapshotView {
GDCLASS(SnapshotSummaryView, SnapshotView);
protected:
PanelContainer *content_wrapper = nullptr;
Label *title = nullptr;
VBoxContainer *blurb_list = nullptr;
CenterContainer *explainer_text = nullptr;
@ -59,6 +61,9 @@ protected:
void _push_refcounted_blurb(const String &p_title, GameStateSnapshot *p_snapshot);
void _push_object_blurb(const String &p_title, GameStateSnapshot *p_snapshot);
protected:
void _notification(int p_what);
public:
SnapshotSummaryView();