* added buttons to enable grouping by file or namespace * last used group settings saved to ApplicationSettings * made groups hoverable/clickable on label only * improved node hatching and override edge colors * group overview lists fortune cookie message = Seen with the eyes of love, everything gets a new meaning.
This commit is contained in:
@@ -241,6 +241,16 @@ void ApplicationSettings::setGraphControlsVisible(bool visible)
|
||||
setValue<bool>("application/graph_controls_visible", visible);
|
||||
}
|
||||
|
||||
GroupType ApplicationSettings::getGraphGrouping() const
|
||||
{
|
||||
return stringToGroupType(getValue<std::wstring>("application/graph_grouping", groupTypeToString(GroupType::NONE)));
|
||||
}
|
||||
|
||||
void ApplicationSettings::setGraphGrouping(GroupType type)
|
||||
{
|
||||
setValue<std::wstring>("application/graph_grouping", groupTypeToString(type));
|
||||
}
|
||||
|
||||
int ApplicationSettings::getScreenAutoScaling() const
|
||||
{
|
||||
return getValue<int>("screen/auto_scaling", 1);
|
||||
|
||||
Reference in New Issue
Block a user