diff --git a/WaymarkPresetPlugin/Configuration.cs b/WaymarkPresetPlugin/Configuration.cs index 7603a83..f8ac542 100644 --- a/WaymarkPresetPlugin/Configuration.cs +++ b/WaymarkPresetPlugin/Configuration.cs @@ -69,7 +69,7 @@ public bool ShowLibraryIndexInPresetInfo public bool mAllowDirectPlacePreset = false; public bool AllowDirectPlacePreset { - get { return mAllowDirectPlacePreset; } + get { return false; } set { mAllowDirectPlacePreset = value; } } diff --git a/WaymarkPresetPlugin/PluginUI.cs b/WaymarkPresetPlugin/PluginUI.cs index 50dae9e..0aed01f 100644 --- a/WaymarkPresetPlugin/PluginUI.cs +++ b/WaymarkPresetPlugin/PluginUI.cs @@ -466,8 +466,8 @@ protected void DrawSettingsWindow() ImGui.Checkbox( "Show \"Filter on Current Zone\" checkbox.", ref mConfiguration.mShowFilterOnCurrentZoneCheckbox ); ImGui.Checkbox( "Show ID numbers next to zone names.", ref mConfiguration.mShowIDNumberNextToZoneNames ); ImGui.Checkbox( "Show the index of the preset within the library.", ref mConfiguration.mShowLibraryIndexInPresetList ); - ImGui.Checkbox( "Allow placement of presets directly from the library*.", ref mConfiguration.mAllowDirectPlacePreset ); - ImGui.Text( "*Please read the plugin site's readme before enabling this." ); + /*ImGui.Checkbox( "Allow placement of presets directly from the library*.", ref mConfiguration.mAllowDirectPlacePreset ); + ImGui.Text( "*Please read the plugin site's readme before enabling this." );*/ if( !mConfiguration.ShowFilterOnCurrentZoneCheckbox ) FilterOnCurrentZone = false; ImGui.Spacing(); if( ImGui.Button( "Save and Close" ) )