File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -455,10 +455,8 @@ void GetConflictItems(ShortcutListItem target)
455
455
if ( item == target ) continue ;
456
456
if ( item . Custom == keys )
457
457
{
458
- if ( item . HasConflicts ) conflicts . AddRange ( item . Conflicts ) ;
459
- else conflicts . Add ( item ) ;
460
-
461
- item . Conflicts = conflicts ;
458
+ conflicts . Add ( item ) ;
459
+ item . Conflicts = conflicts ;
462
460
}
463
461
}
464
462
@@ -637,6 +635,7 @@ public List<ShortcutListItem> Conflicts
637
635
get { return this . conflicts ; }
638
636
set
639
637
{
638
+ if ( this . conflicts == value ) return ;
640
639
this . conflicts = value ;
641
640
UpdateItemHighlightFont ( this ) ;
642
641
}
@@ -666,6 +665,7 @@ public Keys Custom
666
665
get { return this . custom ; }
667
666
set
668
667
{
668
+ if ( this . custom == value ) return ;
669
669
this . custom = value ;
670
670
this . KeysString = DataConverter . KeysToString ( this . custom ) ;
671
671
this . SubItems [ 1 ] . Text = this . KeysString ;
You can’t perform that action at this time.
0 commit comments