We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b9704e commit 1611ad3Copy full SHA for 1611ad3
Flow.Launcher.Plugin/ThemeData.cs
@@ -1,4 +1,6 @@
1
-namespace Flow.Launcher.Plugin;
+using System;
2
+
3
+namespace Flow.Launcher.Plugin;
4
5
/// <summary>
6
/// Theme data model
@@ -60,7 +62,7 @@ public override bool Equals(object obj)
60
62
/// <inheritdoc />
61
63
public override int GetHashCode()
64
{
- return Name?.GetHashCode() ?? 0;
65
+ return HashCode.Combine(FileNameWithoutExtension, Name);
66
}
67
68
0 commit comments