Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@ public LogClient getClient() {
* @param logEntry A new or updated {@link LogEntry}
*/
public void handleLogEntryChange(LogEntry logEntry){
logEntryTable.logEntryChanged(logEntry);
// At this point the logEntryTable might be null, e.g. if log entry editor is launched
// before first launch of log entry table app.
if(logEntryTable != null){
logEntryTable.logEntryChanged(logEntry);
}
}
}