Skip to content

Commit

Permalink
fix event parameters not loading correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
Aytackydln committed Oct 11, 2023
1 parent 83640a4 commit 7c645c1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public sealed class EventIdle : LightEvent
public EventIdle()
{
Global.Configuration.PropertyChanged += IdleTypeChanged;
IdleTypeChanged(this, new PropertyChangedEventArgs(""));
IdleTypeChanged(this, new PropertyChangedEventArgs(nameof(Global.Configuration.IdleType)));
}

public override void Dispose()
Expand Down

0 comments on commit 7c645c1

Please sign in to comment.