summaryrefslogtreecommitdiff
path: root/wx+/bitmap_button.h
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2021-07-15 09:50:54 -0400
committerB. Stack <bgstack15@gmail.com>2021-07-15 09:50:54 -0400
commitfccb76c1f19a08ee0f0db6014cd217a64ba3502f (patch)
tree774b9ac395e65f9346210dcf804aa58f1b3975d1 /wx+/bitmap_button.h
parentMerge branch '11.11' into 'master' (diff)
downloadFreeFileSync-fccb76c1f19a08ee0f0db6014cd217a64ba3502f.tar.gz
FreeFileSync-fccb76c1f19a08ee0f0db6014cd217a64ba3502f.tar.bz2
FreeFileSync-fccb76c1f19a08ee0f0db6014cd217a64ba3502f.zip
add upstream 11.12
Diffstat (limited to 'wx+/bitmap_button.h')
-rw-r--r--wx+/bitmap_button.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/wx+/bitmap_button.h b/wx+/bitmap_button.h
index 8fe8e146..a3e6b0f6 100644
--- a/wx+/bitmap_button.h
+++ b/wx+/bitmap_button.h
@@ -101,7 +101,7 @@ wxBitmap renderSelectedButton(const wxSize& sz)
const wxColor borderCol(0x79, 0xbc, 0xed); //medium blue
const wxColor innerCol (0xcc, 0xe4, 0xf8); //light blue
- drawFilledRectangle(dc, wxRect(bmp.GetSize()), fastFromDIP(1), borderCol, innerCol);
+ drawInsetRectangle(dc, wxRect(bmp.GetSize()), fastFromDIP(1), borderCol, innerCol);
}
return bmp;
}
bgstack15