mirror of https://github.com/buggins/dlangui.git
Scroll file dialog grid without extend free space on end to show full column at left when scrolled to right.
This commit is contained in:
parent
17d4995e98
commit
7f9fc27f64
|
@ -623,6 +623,8 @@ class FileDialog : Dialog, CustomGridCellAdapter {
|
|||
|
||||
_fileList = new StringGridWidget("files");
|
||||
_fileList.layoutWidth(FILL_PARENT).layoutHeight(FILL_PARENT);
|
||||
_fileList.fullColumnOnLeft(false);
|
||||
_fileList.fullRowOnTop(false);
|
||||
_fileList.resize(4, 3);
|
||||
_fileList.setColTitle(0, " "d);
|
||||
_fileList.setColTitle(1, UIString.fromId("COL_NAME"c).value);
|
||||
|
|
Loading…
Reference in New Issue