From 7cd547293163978acab0652c126abdfd92930b28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=ADn=20Lucas=20Golini?= Date: Sat, 7 May 2022 15:22:26 -0300 Subject: [PATCH] UICodeEditor: Minimap background color defaults to the color scheme background color if not set. --- src/eepp/ui/doc/syntaxcolorscheme.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/eepp/ui/doc/syntaxcolorscheme.cpp b/src/eepp/ui/doc/syntaxcolorscheme.cpp index 50beec0b9..01c5a7ee0 100644 --- a/src/eepp/ui/doc/syntaxcolorscheme.cpp +++ b/src/eepp/ui/doc/syntaxcolorscheme.cpp @@ -213,7 +213,7 @@ SyntaxColorScheme::getEditorSyntaxStyle( const std::string& type ) const { else if ( type == "notice" ) return StyleDefault.getEditorSyntaxStyle( "notice" ); else if ( type == "minimap_background" ) - return StyleDefault.getEditorSyntaxStyle( "minimap_background" ); + return StyleEmpty; else if ( type == "minimap_current_line" ) return StyleDefault.getEditorSyntaxStyle( "minimap_current_line" ); else if ( type == "minimap_hover" )