[vte] widget: Fix Widget::regex_match_check_at()
- From: Alexander Mikhaylenko <alexm src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [vte] widget: Fix Widget::regex_match_check_at()
- Date: Thu, 1 Sep 2022 13:25:32 +0000 (UTC)
commit fd6d6226272cda3e8c4d4a58e84c796656264566
Author: Alexander Mikhaylenko <alexm gnome org>
Date: Thu Sep 1 05:13:53 2022 +0400
widget: Fix Widget::regex_match_check_at()
It was calling Terminal::regex_match_check() instead of
Terminal::regex_match_check_at().
Fixes https://gitlab.gnome.org/GNOME/vte/-/issues/2578
src/widget.hh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/src/widget.hh b/src/widget.hh
index cd8ee771..c23e0422 100644
--- a/src/widget.hh
+++ b/src/widget.hh
@@ -480,7 +480,7 @@ public:
double y,
int* tag)
{
- return terminal()->regex_match_check(x, y, tag);
+ return terminal()->regex_match_check_at(x, y, tag);
}
bool regex_match_check_extra_at(double x,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]