diff -r a4eb1787ea41 -r 343db73c4842 eric6/QScintilla/Shell.py --- a/eric6/QScintilla/Shell.py Sun Apr 05 18:17:08 2020 +0200 +++ b/eric6/QScintilla/Shell.py Sat May 02 13:51:07 2020 +0200 @@ -327,7 +327,7 @@ self.__setAutoCompletion() self.__setCallTips() - self.setWindowIcon(UI.PixmapCache.getIcon("eric.png")) + self.setWindowIcon(UI.PixmapCache.getIcon("eric")) self.incrementalSearchString = "" self.incrementalSearchActive = False @@ -581,6 +581,10 @@ if Preferences.getShell("CallTipsEnabled"): self.setCallTipsBackgroundColor( Preferences.getEditorColour("CallTipsBackground")) + self.setCallTipsForegroundColor( + Preferences.getEditorColour("CallTipsForeground")) + self.setCallTipsHighlightColor( + Preferences.getEditorColour("CallTipsHighlight")) self.setCallTipsVisible(Preferences.getEditor("CallTipsVisible")) calltipsStyle = Preferences.getEditor("CallTipsStyle") if calltipsStyle == QsciScintilla.CallTipsNoContext: