Skip to content

Commit 5df1ec0

Browse files
committed
F1 toggle hover hint when it's not used for completion
1 parent d6d60a1 commit 5df1ec0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

PluginCore/PluginCore/Controls/UITools.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ private bool HandleKeys(Keys key)
378378
}
379379

380380
// toggle "long-description" for the hover tooltip
381-
if (Tip.Visible && key == Keys.F1)
381+
if (key == Keys.F1 && Tip.Visible && !CompletionList.Active)
382382
{
383383
showDetails = !showDetails;
384384
simpleTip.UpdateTip(PluginBase.MainForm.CurrentDocument.SciControl);

0 commit comments

Comments
 (0)