file dialog path segments fixed; enhancement issue #22 implemented.

This commit is contained in:
Vadim Lopatin 2015-01-05 18:17:25 +03:00
parent 78f407c474
commit 202ff81633
2 changed files with 2 additions and 2 deletions

View File

@ -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() {

View File

@ -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) {