fix bug in tab widget how did i not notice this before

This commit is contained in:
Adam D. Ruppe 2023-09-12 21:29:18 -04:00
parent 8844c3c438
commit 7aa3d60d86
1 changed files with 3 additions and 2 deletions

View File

@ -6849,8 +6849,9 @@ class TabMessageWidget : Widget {
createWin32Window(this, WC_TABCONTROL, "", 0);
} else version(custom_widgets) {
addEventListener((ClickEvent event) {
if(event.target !is this && this.container !is null && event.target !is this.container) return;
if(event.clientY < tabBarHeight) {
if(event.target !is this)
return;
if(event.clientY >= 0 && event.clientY < tabBarHeight) {
auto t = (event.clientX / tabWidth);
if(t >= 0 && t < tabs.length) {
currentTab_ = t;