From ad271a183c03407e3e8ba92c23f0deb00dc92709 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Techet?= Date: Mon, 29 Sep 2025 08:52:52 +1000 Subject: Bug [#2486]. Eliminate special macOS default calltip color There doesn't seem to be any editor using this color these days and the result looks alien on the platform. Using grey on white looks much more native for the platform. --- src/CallTip.cxx | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src') diff --git a/src/CallTip.cxx b/src/CallTip.cxx index 2be23e898..c803cb69d 100644 --- a/src/CallTip.cxx +++ b/src/CallTip.cxx @@ -40,15 +40,9 @@ size_t Chunk::Length() const noexcept { namespace { -#ifdef __APPLE__ -// Archaic macOS colours for the default: black on light yellow -constexpr ColourRGBA colourTextAndArrow(black); -constexpr ColourRGBA colourBackground(0xff, 0xff, 0xc6); -#else // Grey on white constexpr ColourRGBA colourTextAndArrow(0x80, 0x80, 0x80); constexpr ColourRGBA colourBackground(white); -#endif constexpr ColourRGBA silver(0xc0, 0xc0, 0xc0); -- cgit v1.2.3