mirror of
https://github.com/notepad-plus-plus/notepad-plus-plus.git
synced 2025-07-26 07:15:21 +02:00
parent
9cec6aff3b
commit
f09b653d19
@ -105,7 +105,10 @@ void FunctionCallTip::showNextOverload()
|
|||||||
{
|
{
|
||||||
if (!isVisible())
|
if (!isVisible())
|
||||||
return;
|
return;
|
||||||
_currentOverload = (_currentOverload+1) % _currentNbOverloads;
|
|
||||||
|
if (_currentNbOverloads > 0)
|
||||||
|
_currentOverload = (_currentOverload + 1) % _currentNbOverloads;
|
||||||
|
|
||||||
showCalltip();
|
showCalltip();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user