summaryrefslogtreecommitdiff
path: root/wx+/graph.cpp
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2021-07-15 15:01:41 +0000
committerB. Stack <bgstack15@gmail.com>2021-07-15 15:01:41 +0000
commitbc6f56c106b894409640a7730838bd52ec0c8044 (patch)
tree774b9ac395e65f9346210dcf804aa58f1b3975d1 /wx+/graph.cpp
parentMerge branch '11.11' into 'master' (diff)
parentadd upstream 11.12 (diff)
downloadFreeFileSync-bc6f56c106b894409640a7730838bd52ec0c8044.tar.gz
FreeFileSync-bc6f56c106b894409640a7730838bd52ec0c8044.tar.bz2
FreeFileSync-bc6f56c106b894409640a7730838bd52ec0c8044.zip
Merge branch '11.12' into 'master'
add upstream 11.12 See merge request opensource-tracking/FreeFileSync!35
Diffstat (limited to 'wx+/graph.cpp')
-rw-r--r--wx+/graph.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/wx+/graph.cpp b/wx+/graph.cpp
index 8dec2074..0f9cffef 100644
--- a/wx+/graph.cpp
+++ b/wx+/graph.cpp
@@ -576,7 +576,7 @@ void Graph2D::render(wxDC& dc) const
assert(attr_.yLabelpos == YLabelPos::none || attr_.labelFmtY);
//paint graph background (excluding label area)
- drawFilledRectangle(dc, graphArea, fastFromDIP(1), getBorderColor(), attr_.colorBack);
+ drawInsetRectangle(dc, graphArea, fastFromDIP(1), getBorderColor(), attr_.colorBack);
graphArea.Deflate(fastFromDIP(1));
//set label areas respecting graph area border!
bgstack15