mirror of https://github.com/buggins/dlangui.git
file dialog path segments fixed; enhancement issue #22 implemented.
This commit is contained in:
parent
78f407c474
commit
202ff81633
|
@ -573,7 +573,7 @@ class FilePathPanel : FrameLayout {
|
||||||
@property void path(string value) {
|
@property void path(string value) {
|
||||||
_segments.init(value);
|
_segments.init(value);
|
||||||
_edPath.text = toUTF32(value);
|
_edPath.text = toUTF32(value);
|
||||||
_path = path;
|
_path = value;
|
||||||
showChild(ID_SEGMENTS);
|
showChild(ID_SEGMENTS);
|
||||||
}
|
}
|
||||||
@property string path() {
|
@property string path() {
|
||||||
|
|
|
@ -262,7 +262,7 @@ class Widget {
|
||||||
/// override to handle focus changes
|
/// override to handle focus changes
|
||||||
protected void handleFocusChange(bool focused) {
|
protected void handleFocusChange(bool focused) {
|
||||||
invalidate();
|
invalidate();
|
||||||
onFocusChangeListener(this, checked);
|
onFocusChangeListener(this, focused);
|
||||||
}
|
}
|
||||||
/// override to handle check changes
|
/// override to handle check changes
|
||||||
protected void handleCheckChange(bool checked) {
|
protected void handleCheckChange(bool checked) {
|
||||||
|
|
Loading…
Reference in New Issue