Revert "Allow adjustment of offset in settings file"

This reverts commit aafbdebb9b.
This commit is contained in:
Garulf 2021-12-20 02:27:18 -05:00
parent aafbdebb9b
commit c3ceed1271
4 changed files with 2 additions and 16 deletions

View file

@ -15,7 +15,6 @@ namespace Flow.Launcher.Infrastructure.UserSettings
private string language = "en";
public string Hotkey { get; set; } = $"{KeyConstant.Alt} + {KeyConstant.Space}";
public string OpenResultModifiers { get; set; } = KeyConstant.Alt;
public int SuggestionTextOffset { get; set; } = 40;
public string ColorScheme { get; set; } = "System";
public bool ShowOpenResultHotkey { get; set; } = true;
public double WindowSize { get; set; } = 580;

View file

@ -12,8 +12,7 @@ namespace Flow.Launcher.Converters
{
public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)
{
if (values.Length != 4)
if (values.Length != 3)
{
return string.Empty;
}
@ -54,10 +53,7 @@ namespace Flow.Launcher.Converters
// Check if Text will be larger then our QueryTextBox
System.Windows.Media.Typeface typeface = new Typeface(QueryTextBox.FontFamily, QueryTextBox.FontStyle, QueryTextBox.FontWeight, QueryTextBox.FontStretch);
System.Windows.Media.FormattedText ft = new FormattedText(QueryTextBox.Text, System.Globalization.CultureInfo.CurrentCulture, System.Windows.FlowDirection.LeftToRight, typeface, QueryTextBox.FontSize, Brushes.Black);
var FormatOffset = (int)values[3];
if ((ft.Width + FormatOffset) > QueryTextBox.ActualWidth || QueryTextBox.HorizontalOffset != 0)
if ((ft.Width + 40) > QueryTextBox.ActualWidth || QueryTextBox.HorizontalOffset != 0)
{
return string.Empty;
};

View file

@ -164,7 +164,6 @@
<Binding ElementName="QueryTextBox" Mode="OneTime" />
<Binding ElementName="ResultListBox" Path="SelectedItem" />
<Binding ElementName="QueryTextBox" Path="Text" />
<Binding Path="SuggestionTextOffset" />
</MultiBinding>
</TextBox.Text>
</TextBox>

View file

@ -84,7 +84,6 @@ namespace Flow.Launcher.ViewModel
InitializeKeyCommands();
RegisterViewUpdate();
RegisterResultsUpdatedEvent();
SetSuggestionTextOffset();
SetOpenResultModifiers();
}
@ -396,8 +395,6 @@ namespace Flow.Launcher.ViewModel
public double MainWindowWidth => _settings.WindowSize;
public int SuggestionTextOffset { get; set; }
public ICommand EscCommand { get; set; }
public ICommand SelectNextItemCommand { get; set; }
public ICommand SelectPrevItemCommand { get; set; }
@ -723,11 +720,6 @@ namespace Flow.Launcher.ViewModel
OpenResultCommandModifiers = _settings.OpenResultModifiers ?? DefaultOpenResultModifiers;
}
private void SetSuggestionTextOffset()
{
SuggestionTextOffset = _settings.SuggestionTextOffset;
}
public void ToggleFlowLauncher()
{
if (!MainWindowVisibilityStatus)