mirror of https://github.com/GNOME/gimp.git
app: readability improvement in GimpActionFactory
This commit is contained in:
parent
4d38ae333a
commit
ef0eb29e55
|
@ -185,7 +185,9 @@ gimp_action_factory_get_group (GimpActionFactory *factory,
|
||||||
{
|
{
|
||||||
GimpActionGroup *group;
|
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,
|
group = gimp_action_group_new (factory->gimp,
|
||||||
entry->identifier,
|
entry->identifier,
|
||||||
|
|
Loading…
Reference in New Issue