Skip to content

Commit

Permalink
use a thicker line to indicate capture groups
Browse files Browse the repository at this point in the history
  • Loading branch information
stefankueng committed Jan 15, 2025
1 parent a52e9ff commit 3f099fc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ScintillaWnd.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This file is part of BowPad.
//
// Copyright (C) 2013-2024 - Stefan Kueng
// Copyright (C) 2013-2025 - Stefan Kueng
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -1242,6 +1242,7 @@ void CScintillaWnd::SetupDefaultStyles() const
{
m_scintilla.IndicSetStyle(i, Scintilla::IndicatorStyle::Box);
m_scintilla.IndicSetFore(i, CTheme::Instance().GetThemeColor(captureColors[i - INDIC_REGEXCAPTURE]));
m_scintilla.IndicSetStrokeWidth(i, 300);
}

for (uptr_t i = INDIC_CUSTOM_MARK_1; i <= INDIC_CUSTOM_MARK_4; ++i)
Expand Down

0 comments on commit 3f099fc

Please sign in to comment.