mirror of https://github.com/adamdruppe/arsd.git
fix bug in tab widget how did i not notice this before
This commit is contained in:
parent
8844c3c438
commit
7aa3d60d86
|
@ -6849,8 +6849,9 @@ class TabMessageWidget : Widget {
|
||||||
createWin32Window(this, WC_TABCONTROL, "", 0);
|
createWin32Window(this, WC_TABCONTROL, "", 0);
|
||||||
} else version(custom_widgets) {
|
} else version(custom_widgets) {
|
||||||
addEventListener((ClickEvent event) {
|
addEventListener((ClickEvent event) {
|
||||||
if(event.target !is this && this.container !is null && event.target !is this.container) return;
|
if(event.target !is this)
|
||||||
if(event.clientY < tabBarHeight) {
|
return;
|
||||||
|
if(event.clientY >= 0 && event.clientY < tabBarHeight) {
|
||||||
auto t = (event.clientX / tabWidth);
|
auto t = (event.clientX / tabWidth);
|
||||||
if(t >= 0 && t < tabs.length) {
|
if(t >= 0 && t < tabs.length) {
|
||||||
currentTab_ = t;
|
currentTab_ = t;
|
||||||
|
|
Loading…
Reference in New Issue