Add configurable graph overview node color (#1259)

This commit is contained in:
Itay Cohen 2019-03-10 09:53:06 +02:00 committed by GitHub
parent 3fed97ad86
commit 8b7d795a15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 1 deletions

View File

@ -23,7 +23,8 @@ static const QStringList cutterSpecificOptions = {
"gui.navbar.empty",
"angui.navbar.str",
"gui.disass_selected",
"gui.breakpoint_background"
"gui.breakpoint_background",
"gui.overview.node"
};
ColorSchemeFileSaver::ColorSchemeFileSaver(QObject *parent) : QObject (parent)

View File

@ -202,6 +202,12 @@ static const QMap<QString, OptionIfo> optionInfoMap = {
},
{ "graph.current", { "", "graph.current", false } },
{ "graph.traced", { "", "graph.traced", false } },
{
"gui.overview.node", {
QObject::tr("Background color of Graph Overview's node"),
QObject::tr("Graph Overview node"), true
}
},
{ "gui.cflow", { "", "gui.cflow", true } },
{ "gui.dataoffset", { "", "gui.dataoffset", true } },
{