Skip to content

Commit bf2a711

Browse files
committed
Clarified which color menu item changes mods vs categories.
1 parent 795c238 commit bf2a711

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

lib/mod_manager/mod_context_menu.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ MenuItem _buildBulkColorSubmenu(List<Mod> selectedMods, WidgetRef ref) {
216216
: null;
217217

218218
return MenuItem.submenu(
219-
label: 'Color',
219+
label: 'Mod Color',
220220
icon: Icons.palette,
221221
items: [
222222
MenuItem(
@@ -255,7 +255,7 @@ MenuItem _buildColorSubmenu(String modId, WidgetRef ref) {
255255
?.color;
256256

257257
return MenuItem.submenu(
258-
label: 'Color',
258+
label: 'Mod Color',
259259
icon: Icons.palette,
260260
items: [
261261
MenuItem(

lib/mod_manager/widgets/category_context_menu.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ List<ContextMenuEntry> buildCategoryContextMenuEntries(
295295
},
296296
),
297297
MenuItem.submenu(
298-
label: 'Change Color',
298+
label: 'Category Color',
299299
icon: Icons.palette,
300300
items: [
301301
MenuItem(
@@ -317,7 +317,7 @@ List<ContextMenuEntry> buildCategoryContextMenuEntries(
317317
],
318318
),
319319
MenuItem.submenu(
320-
label: 'Change Icon',
320+
label: 'Category Icon',
321321
icon: Icons.emoji_symbols,
322322
onSelected: onBrowseAllSelected,
323323
items: [

0 commit comments

Comments
 (0)