File tree Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -513,7 +513,21 @@ private void PinUnpinEntry(IMRUEntryViewModel val)
513
513
val . SetIsPinned ( newIsPinnedValue ) ;
514
514
515
515
if ( newIsPinnedValue != 0 ) // Increment next IsPinned order entry
516
+ {
516
517
_NextIsPinnedValue += 1 ; // If this entry is a newly pinned enty
518
+
519
+ // Update all entries if this entry is the first entry to be pinned
520
+ if ( _NextIsPinnedValue == 2 && Entries . Count > 0 )
521
+ {
522
+ List < IMRUEntryViewModel > values = new List < IMRUEntryViewModel > ( ) ;
523
+
524
+ foreach ( var item in Entries . Values )
525
+ values . Add ( item ) ;
526
+
527
+ foreach ( var item in values )
528
+ UpdateEntry ( item ) ;
529
+ }
530
+ }
517
531
else
518
532
{
519
533
DecrementPinnedValues ( oldIsPinnedValue ) ;
Original file line number Diff line number Diff line change 12
12
[ assembly: AssemblyConfiguration ( "" ) ]
13
13
[ assembly: AssemblyCompany ( "" ) ]
14
14
[ assembly: AssemblyProduct ( "MRULib" ) ]
15
- [ assembly: AssemblyCopyright ( "Copyright © 2017" ) ]
15
+ [ assembly: AssemblyCopyright ( "Copyright © 2017-2018 " ) ]
16
16
[ assembly: AssemblyTrademark ( "" ) ]
17
17
[ assembly: AssemblyCulture ( "" ) ]
18
18
51
51
// You can specify all the values or you can default the Build and Revision Numbers
52
52
// by using the '*' as shown below:
53
53
// [assembly: AssemblyVersion("1.0.*")]
54
- [ assembly: AssemblyVersion ( "1.0.0 .0" ) ]
55
- [ assembly: AssemblyFileVersion ( "1.0.0 .0" ) ]
54
+ [ assembly: AssemblyVersion ( "1.0.1 .0" ) ]
55
+ [ assembly: AssemblyFileVersion ( "1.0.1 .0" ) ]
You can’t perform that action at this time.
0 commit comments