diff options
Diffstat (limited to 'win32')
| -rw-r--r-- | win32/ScintillaWin.cxx | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/win32/ScintillaWin.cxx b/win32/ScintillaWin.cxx index b43503615..be910d0f9 100644 --- a/win32/ScintillaWin.cxx +++ b/win32/ScintillaWin.cxx @@ -615,10 +615,10 @@ ScintillaWin::ScintillaWin(HWND hwnd) {  	HMODULE user32 = ::GetModuleHandleW(L"user32.dll");  	SetCoalescableTimerFn = DLLFunction<SetCoalescableTimerSig>(user32, "SetCoalescableTimer"); -	vs.indicators[IndicatorUnknown] = Indicator(IndicatorStyle::Hidden, ColourRGBA(0, 0, 0xff)); -	vs.indicators[IndicatorInput] = Indicator(IndicatorStyle::Dots, ColourRGBA(0, 0, 0xff)); -	vs.indicators[IndicatorConverted] = Indicator(IndicatorStyle::CompositionThick, ColourRGBA(0, 0, 0xff)); -	vs.indicators[IndicatorTarget] = Indicator(IndicatorStyle::StraightBox, ColourRGBA(0, 0, 0xff)); +	vs.indicators[IndicatorUnknown] = Indicator(IndicatorStyle::Hidden, colourIME); +	vs.indicators[IndicatorInput] = Indicator(IndicatorStyle::Dots, colourIME); +	vs.indicators[IndicatorConverted] = Indicator(IndicatorStyle::CompositionThick, colourIME); +	vs.indicators[IndicatorTarget] = Indicator(IndicatorStyle::StraightBox, colourIME);  }  ScintillaWin::~ScintillaWin() { | 
