[vte/vte-0-70] widget: Fix Widget::regex_match_check_at()
- From: Alexander Mikhaylenko <alexm src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [vte/vte-0-70] widget: Fix Widget::regex_match_check_at()
- Date: Thu, 1 Sep 2022 13:26:06 +0000 (UTC)
commit 73a7df10247c8822de7a377d7ce2072a5d95ad1a
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 21a494d3..e956a611 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]