Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Made user preferences refresh after open a dialog
  • Loading branch information
KlasJoensson committed Aug 21, 2012
1 parent 16e2eda commit bff2a55
Showing 1 changed file with 5 additions and 1 deletion.
Expand Up @@ -285,6 +285,7 @@ public void widgetSelected(SelectionEvent e) {
}
list.select(pos);
refreshTable();
refreshList();
refreshOnSelectionChanged();
}

Expand Down Expand Up @@ -313,6 +314,8 @@ public void widgetSelected(SelectionEvent e) {
accountsListViewer.getList().select(0);
}
refreshOnSelectionChanged();
refreshTable();
refreshList();
}
});
final FormData formData_7 = new FormData();
Expand Down Expand Up @@ -365,7 +368,8 @@ public void widgetSelected(SelectionEvent e) {
* updating here and not in the dialog */
model.dummyAccounts.get( selectedAccountId ).properties.putAll( dialog.getProperties() );
}

refreshList();
refreshOnSelectionChanged();
refreshTable();
}
});
Expand Down

0 comments on commit bff2a55

Please sign in to comment.