Fix explain colors in dark mode

This commit is contained in:
eelke 2025-03-10 19:01:03 +01:00
parent 2e516c9284
commit 05e9b982cd
4 changed files with 32 additions and 9 deletions

View file

@ -2,6 +2,7 @@
#include <QAbstractItemModel>
#include <string>
#include <util/Colors.h>
#include "ExplainTreeModelItem.h"
/** \brief Model class for displaying the explain of a query in a tree like format.
@ -30,4 +31,5 @@ public:
private:
ExplainRoot::SPtr explain;
const ColorTheme &theme;
};