app: readability improvement in GimpActionFactory

This commit is contained in:
Michael Natterer 2023-05-22 03:14:01 +02:00
parent 4d38ae333a
commit ef0eb29e55
1 changed files with 3 additions and 1 deletions

View File

@ -185,7 +185,9 @@ gimp_action_factory_get_group (GimpActionFactory *factory,
{
GimpActionGroup *group;
if ((group = g_hash_table_lookup (entry->groups, user_data)) == NULL)
group = g_hash_table_lookup (entry->groups, user_data);
if (group == NULL)
{
group = gimp_action_group_new (factory->gimp,
entry->identifier,