[haiku-commits] haiku: hrev49750 - src/kits/tracker

  • From: jscipione@xxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Tue, 3 Nov 2015 20:29:10 +0100 (CET)

hrev49750 adds 1 changeset to branch 'master'
old head: 299467d2a31d3d4a92a793914f9b76c10497cce3
new head: f672379ca14c03cc8f4485e0911354ca03489022
overview:
http://cgit.haiku-os.org/haiku/log/?qt=range&q=f672379ca14c+%5E299467d2a31d

----------------------------------------------------------------------------

f672379ca14c: Tracker: Redraw info window when file path changes

The hard work was already being done, we just had to redraw to get the new
path.

Fixes #12437

[ John Scipione <jscipione@xxxxxxxxx> ]

----------------------------------------------------------------------------

Revision: hrev49750
Commit: f672379ca14c03cc8f4485e0911354ca03489022
URL: http://cgit.haiku-os.org/haiku/commit/?id=f672379ca14c
Author: John Scipione <jscipione@xxxxxxxxx>
Date: Tue Nov 3 19:25:04 2015 UTC

Ticket: https://dev.haiku-os.org/ticket/12437

----------------------------------------------------------------------------

1 file changed, 1 insertion(+)
src/kits/tracker/InfoWindow.cpp | 1 +

----------------------------------------------------------------------------

diff --git a/src/kits/tracker/InfoWindow.cpp b/src/kits/tracker/InfoWindow.cpp
index 6650cb7..1a06aaf 100644
--- a/src/kits/tracker/InfoWindow.cpp
+++ b/src/kits/tracker/InfoWindow.cpp
@@ -1123,6 +1123,7 @@ AttributeView::ModelChanged(Model* model, BMessage*
message)
Window()->SetTitle(title.String());
WidgetAttributeText::AttrAsString(model,
&fPathStr, kAttrPath,
B_STRING_TYPE, 0, this);
+ Invalidate();
}
break;
}


Other related posts:

  • » [haiku-commits] haiku: hrev49750 - src/kits/tracker - jscipione