fix: remove wrong options from bar mode

This commit is contained in:
Anna 2024-08-01 17:44:47 -04:00
parent 13c004dbb2
commit ebc2af153e
Signed by: anna
GPG Key ID: D0943384CD9F87D1

View File

@ -90,13 +90,6 @@ public class PluginUi : IDisposable {
anyChanged = true;
this.Plugin.Config.DpsBarScaleToMax = false;
}
foreach (var mode in Enum.GetValues<DpsBarMode>()) {
if (ImGui.Selectable(Enum.GetName(mode), this.Plugin.Config.DpsBarMode == mode)) {
anyChanged = true;
this.Plugin.Config.DpsBarMode = mode;
}
}
}
var barAlpha = this.Plugin.Config.BarAlpha * 100;