Shuffle entries
This commit is contained in:
Generated
+2
-2
@@ -2472,7 +2472,7 @@ namespace ChatTwo.Resources {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized string similar to Show only if the text length is greater-than or equal.
|
/// Looks up a localized string similar to Only show if the text length is greater-than or equal.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static string Options_PreviewMinimum_Description {
|
internal static string Options_PreviewMinimum_Description {
|
||||||
get {
|
get {
|
||||||
@@ -2490,7 +2490,7 @@ namespace ChatTwo.Resources {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized string similar to Show only if the text contains special parameter.
|
/// Looks up a localized string similar to Only show if the text contains special parameter.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static string Options_PreviewOnlyIf_Description {
|
internal static string Options_PreviewOnlyIf_Description {
|
||||||
get {
|
get {
|
||||||
|
|||||||
@@ -1079,13 +1079,13 @@
|
|||||||
<value>Must contain parameter</value>
|
<value>Must contain parameter</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Options_PreviewOnlyIf_Description" xml:space="preserve">
|
<data name="Options_PreviewOnlyIf_Description" xml:space="preserve">
|
||||||
<value>Show only if the text contains special parameter</value>
|
<value>Only show if the text contains special parameter</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Options_PreviewMinimum_Name" xml:space="preserve">
|
<data name="Options_PreviewMinimum_Name" xml:space="preserve">
|
||||||
<value>Minimum input length</value>
|
<value>Minimum input length</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Options_PreviewMinimum_Description" xml:space="preserve">
|
<data name="Options_PreviewMinimum_Description" xml:space="preserve">
|
||||||
<value>Show only if the text length is greater-than or equal</value>
|
<value>Only show if the text length is greater-than or equal</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Options_Preview_Tab" xml:space="preserve">
|
<data name="Options_Preview_Tab" xml:space="preserve">
|
||||||
<value>Preview</value>
|
<value>Preview</value>
|
||||||
|
|||||||
@@ -33,10 +33,10 @@ internal sealed class Preview : ISettingsTab
|
|||||||
ImGuiUtil.HelpText(Language.Options_Preview_Description);
|
ImGuiUtil.HelpText(Language.Options_Preview_Description);
|
||||||
ImGui.Spacing();
|
ImGui.Spacing();
|
||||||
|
|
||||||
ImGuiUtil.OptionCheckbox(ref Mutable.OnlyPreviewIf, Language.Options_PreviewOnlyIf_Name, Language.Options_PreviewOnlyIf_Description);
|
|
||||||
ImGui.Spacing();
|
|
||||||
if (ImGuiUtil.InputIntVertical(Language.Options_PreviewMinimum_Name, Language.Options_PreviewMinimum_Description, ref Mutable.PreviewMinimum))
|
if (ImGuiUtil.InputIntVertical(Language.Options_PreviewMinimum_Name, Language.Options_PreviewMinimum_Description, ref Mutable.PreviewMinimum))
|
||||||
Mutable.PreviewMinimum = Math.Clamp(Mutable.PreviewMinimum, 1, 250);
|
Mutable.PreviewMinimum = Math.Clamp(Mutable.PreviewMinimum, 1, 250);
|
||||||
|
ImGui.Spacing();
|
||||||
|
ImGuiUtil.OptionCheckbox(ref Mutable.OnlyPreviewIf, Language.Options_PreviewOnlyIf_Name, Language.Options_PreviewOnlyIf_Description);
|
||||||
|
|
||||||
ImGui.Spacing();
|
ImGui.Spacing();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user