summaryrefslogtreecommitdiff
path: root/wx+/grid.cpp
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2023-06-20 07:46:53 -0400
committerB. Stack <bgstack15@gmail.com>2023-06-20 07:46:53 -0400
commitf76994f1fb3e25c4563c9d8afce6bbc86701d1d2 (patch)
treeb39389163603195a0169af57712eb0765e5c11f4 /wx+/grid.cpp
parentadd upstream 12.3 (diff)
downloadFreeFileSync-f76994f1fb3e25c4563c9d8afce6bbc86701d1d2.tar.gz
FreeFileSync-f76994f1fb3e25c4563c9d8afce6bbc86701d1d2.tar.bz2
FreeFileSync-f76994f1fb3e25c4563c9d8afce6bbc86701d1d2.zip
add upstream 12.412.4
Diffstat (limited to 'wx+/grid.cpp')
-rw-r--r--wx+/grid.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/wx+/grid.cpp b/wx+/grid.cpp
index 306d4847..8d3dbea9 100644
--- a/wx+/grid.cpp
+++ b/wx+/grid.cpp
@@ -1443,7 +1443,7 @@ private:
void setMouseHighlight(const std::optional<MouseHighlight>& hl)
{
- assert(!hl || hl->row < refParent().getRowCount() && hl->rowHover != HoverArea::none);
+ assert(!hl || (hl->row < refParent().getRowCount() && hl->rowHover != HoverArea::none));
if (highlight_ != hl)
{
if (highlight_)
bgstack15