Skip to content

Commit

Permalink
Fixed clearing text in the source citation dropdown list [GKv3] (fix #…
Browse files Browse the repository at this point in the history
  • Loading branch information
Serg-Norseman committed Aug 13, 2024
1 parent fc8685a commit cf148ce
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions locales/help_enu/gkhHistory.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ <h1>Change log</h1>

<p>
<b>??.??.2024 [v2.32.0 &amp; v3.8.0]</b><ul>
<li>Fixed clearing text in the source citation dropdown list [GKv3].
<li>Filtering and quick search methods have been combined.
</ul>
</p>
Expand Down
1 change: 1 addition & 0 deletions locales/help_rus/gkhHistory.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ <h1>История версий</h1>

<p>
<b>??.??.2024 [v2.32.0 &amp; v3.8.0]</b><ul>
<li>Устранен сброс текста в выпадающем списке ссылки на источник [GKv3].
<li>Объединены методы фильтрации и быстрого поиска.
</ul>
</p>
Expand Down
4 changes: 3 additions & 1 deletion projects/GKv3/GEDKeeper3/GKUI/Forms/SourceCitEditDlg.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* "GEDKeeper", the personal genealogical database editor.
* Copyright (C) 2009-2023 by Sergey V. Zhdanovskih.
* Copyright (C) 2009-2024 by Sergey V. Zhdanovskih.
*
* This file is part of "GEDKeeper".
*
Expand Down Expand Up @@ -107,7 +107,9 @@ private void cbSource_KeyDown(object sender, KeyEventArgs e)

private void cbSource_KeyUp(object sender, KeyEventArgs e)
{
var text = cmbSource.Text;
fController.RefreshSourcesList(cmbSource.Text);
cmbSource.Text = text;
//cmbSource.SelectionStart = cmbSource.Text.Length;
}
}
Expand Down

0 comments on commit cf148ce

Please sign in to comment.