[Libreoffice-commits] core.git: sc/source
ayhanyalcinsoy (via logerrit)
logerrit at kemper.freedesktop.org
Fri Feb 14 21:59:11 UTC 2020
sc/source/ui/app/inputhdl.cxx | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
New commits:
commit 8705ca0c8a8f87fc4880922064f1f84cac1ea42c
Author: ayhanyalcinsoy <ayhanyalcinsoy at pisilinux.org>
AuthorDate: Sun Jan 5 19:39:57 2020 +0300
Commit: Eike Rathke <erack at redhat.com>
CommitDate: Fri Feb 14 22:58:36 2020 +0100
tdf#124443: show arguments' tooltip above if in Formula Bar's Input Line
Change-Id: I33d52af9c2b1ac3f5cfe279ff17d487c70b8cf32
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86226
Reviewed-by: Eike Rathke <erack at redhat.com>
Tested-by: Jenkins
diff --git a/sc/source/ui/app/inputhdl.cxx b/sc/source/ui/app/inputhdl.cxx
index acf924de9397..b0131488e148 100644
--- a/sc/source/ui/app/inputhdl.cxx
+++ b/sc/source/ui/app/inputhdl.cxx
@@ -1156,7 +1156,14 @@ void ScInputHandler::ShowArgumentsTip( OUString& rSelText )
aBuf.append( " : " );
aBuf.append( ppFDesc->getParameterDescription(nActive-1) );
aNew = aBuf.makeStringAndClear();
- ShowTipBelow( aNew );
+ if (eMode != SC_INPUT_TOP)
+ {
+ ShowTipBelow( aNew );
+ }
+ else
+ {
+ ShowTip(aNew);
+ }
bFound = true;
}
}
More information about the Libreoffice-commits
mailing list