Updates call history view on call ended. Patch provided by Timothy Price.

cusax-fix
Damian Minkov 13 years ago
parent c16dec5bdd
commit fe03d3bd60

@ -174,18 +174,6 @@ else if (CallState.CALL_ENDED.equals(newValue))
}
call.removeCallChangeListener(this);
// If we're currently in the call history view, refresh
// it.
TreeContactList contactList
= GuiActivator.getContactList();
if (contactList.getCurrentFilter().equals(
TreeContactList.historyFilter))
{
contactList.applyFilter(
TreeContactList.historyFilter);
}
}
}
});
@ -217,6 +205,18 @@ public void callEndedInEventDispatchThread(CallEvent ev)
* they need to update their UI, for example).
*/
forwardCallEventToCallPanels(ev);
// If we're currently in the call history view, refresh
// it.
TreeContactList contactList
= GuiActivator.getContactList();
if (contactList.getCurrentFilter().equals(
TreeContactList.historyFilter))
{
contactList.applyFilter(
TreeContactList.historyFilter);
}
}
/**

Loading…
Cancel
Save