app: improve readability in GimpMenuFactory

This commit is contained in:
Michael Natterer 2023-05-22 14:11:06 +02:00
parent db3a88f1f5
commit 91fceebb1d
1 changed files with 3 additions and 1 deletions

View File

@ -215,7 +215,9 @@ gimp_menu_factory_get_manager (GimpMenuFactory *factory,
{
GimpUIManager *manager;
if ((manager = g_hash_table_lookup (entry->managers, callback_data)) == NULL)
manager = g_hash_table_lookup (entry->managers, callback_data);
if (manager == NULL)
{
GList *list;