mirror of https://github.com/adamdruppe/arsd.git
some bug fixes
This commit is contained in:
parent
454317cdc2
commit
23d39b22d4
2
core.d
2
core.d
|
@ -86,7 +86,7 @@ version(ArsdUseCustomRuntime)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
version(DigitalMars) {
|
version(OSX) version(DigitalMars) {
|
||||||
version=OSXCocoa;
|
version=OSXCocoa;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9429,7 +9429,7 @@ private class TableViewWidgetInner : Widget {
|
||||||
}
|
}
|
||||||
if(column.width != 0) // no point drawing an invisible column
|
if(column.width != 0) // no point drawing an invisible column
|
||||||
tvw.getData(row, cast(int) columnNumber, (in char[] info) {
|
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) {
|
void dotext(WidgetPainter painter) {
|
||||||
painter.drawText(Point(startX - smw.position.x, y), info, Point(endX - smw.position.x, y + lh), column.alignment);
|
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;
|
mixin OverrideStyle!Style;
|
||||||
|
|
||||||
private static class HeaderWidget : Widget {
|
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) {
|
this(TableViewWidgetInner tvw, Widget parent) {
|
||||||
super(parent);
|
super(parent);
|
||||||
this.tvw = tvw;
|
this.tvw = tvw;
|
||||||
|
|
9
mysql.d
9
mysql.d
|
@ -1200,13 +1200,8 @@ void main() {
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright: Adam D. Ruppe, 2009 - 2011
|
Copyright: Adam D. Ruppe, 2009 - 2024
|
||||||
License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
License: GPL (erroneously started to be Boost in 2011)
|
||||||
Authors: Adam D. Ruppe, with contributions from Nick Sabalausky
|
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)
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue