From 23d39b22d44d26f54ccaaa32547ab4adf01d7a3a Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Tue, 30 Jul 2024 15:34:22 -0400 Subject: [PATCH] some bug fixes --- core.d | 2 +- minigui.d | 6 +++++- mysql.d | 9 ++------- 3 files changed, 8 insertions(+), 9 deletions(-) diff --git a/core.d b/core.d index a26501d..d479bee 100644 --- a/core.d +++ b/core.d @@ -86,7 +86,7 @@ version(ArsdUseCustomRuntime) } else { - version(DigitalMars) { + version(OSX) version(DigitalMars) { version=OSXCocoa; } diff --git a/minigui.d b/minigui.d index 614e925..c5f18f0 100644 --- a/minigui.d +++ b/minigui.d @@ -9429,7 +9429,7 @@ private class TableViewWidgetInner : Widget { } if(column.width != 0) // no point drawing an invisible column tvw.getData(row, cast(int) columnNumber, (in char[] info) { - // auto clip = painter.setClipRectangle( + auto clip = painter.setClipRectangle(Rectangle(Point(startX - smw.position.x, y), Point(endX - smw.position.x, y + lh))); void dotext(WidgetPainter painter) { painter.drawText(Point(startX - smw.position.x, y), info, Point(endX - smw.position.x, y + lh), column.alignment); @@ -9473,6 +9473,10 @@ private class TableViewWidgetInner : Widget { mixin OverrideStyle!Style; private static class HeaderWidget : Widget { + /+ + maybe i should do a splitter thing on top of the other widgets + so the splitter itself isn't really drawn but still replies to mouse events? + +/ this(TableViewWidgetInner tvw, Widget parent) { super(parent); this.tvw = tvw; diff --git a/mysql.d b/mysql.d index 52db566..ee1c2ec 100644 --- a/mysql.d +++ b/mysql.d @@ -1200,13 +1200,8 @@ void main() { /* -Copyright: Adam D. Ruppe, 2009 - 2011 -License: Boost License 1.0. +Copyright: Adam D. Ruppe, 2009 - 2024 +License: GPL (erroneously started to be Boost in 2011) Authors: Adam D. Ruppe, with contributions from Nick Sabalausky - - Copyright Adam D. Ruppe 2009 - 2011. -Distributed under the Boost Software License, Version 1.0. - (See accompanying file LICENSE_1_0.txt or copy at - http://www.boost.org/LICENSE_1_0.txt) */