mirror of https://github.com/adamdruppe/arsd.git
i forgot to commit omg
This commit is contained in:
parent
a2c223a750
commit
ae71b80e63
|
@ -7853,7 +7853,7 @@ class TableView : Widget {
|
||||||
private int getActualSetSize(size_t i, bool askWindows) {
|
private int getActualSetSize(size_t i, bool askWindows) {
|
||||||
version(win32_widgets)
|
version(win32_widgets)
|
||||||
if(askWindows)
|
if(askWindows)
|
||||||
return SendMessage(hwnd, LVM_GETCOLUMNWIDTH, cast(WPARAM) i, 0);
|
return cast(int) SendMessage(hwnd, LVM_GETCOLUMNWIDTH, cast(WPARAM) i, 0);
|
||||||
auto w = columns[i].width;
|
auto w = columns[i].width;
|
||||||
if(w == -1)
|
if(w == -1)
|
||||||
return 50; // idk, just give it some space so the percents aren't COMPLETELY off FIXME
|
return 50; // idk, just give it some space so the percents aren't COMPLETELY off FIXME
|
||||||
|
|
Loading…
Reference in New Issue