mirror of
https://github.com/Ottermandias/Glamourer.git
synced 2025-12-12 18:27:24 +01:00
Fix modifiers for applying from clipboard over design.
This commit is contained in:
parent
3e410f3285
commit
3a4c07000b
1 changed files with 1 additions and 1 deletions
|
|
@ -400,7 +400,7 @@ public class DesignPanel
|
||||||
{
|
{
|
||||||
var text = ImGui.GetClipboardText();
|
var text = ImGui.GetClipboardText();
|
||||||
var (applyEquip, applyCustomize) = UiHelpers.ConvertKeysToBool();
|
var (applyEquip, applyCustomize) = UiHelpers.ConvertKeysToBool();
|
||||||
var design = _converter.FromBase64(text, applyEquip, applyCustomize, out _)
|
var design = _converter.FromBase64(text, applyCustomize, applyEquip, out _)
|
||||||
?? throw new Exception("The clipboard did not contain valid data.");
|
?? throw new Exception("The clipboard did not contain valid data.");
|
||||||
_manager.ApplyDesign(_selector.Selected!, design);
|
_manager.ApplyDesign(_selector.Selected!, design);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue