Skip to content

Commit

Permalink
Model Spy List tab not accessible with keyboard only #2 (#3)
Browse files Browse the repository at this point in the history
Signed-off-by: Vikas Chandra <[email protected]>
  • Loading branch information
vik-chand authored Mar 18, 2022
1 parent 0aebdc9 commit d7b4ba7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -796,6 +796,8 @@ public class Messages {
public String ListTab_col_item;
public String ListTab_col_label;
public String ListTab_col_go;
public String ListTab_col_go2;
public String ListTab_elementId;

public String ListTab_addColumn;
public String ListTab_filterByAttribute;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -801,16 +801,18 @@ ListTab_7=Showing items with attribute:
ListTab_8=xmi
ListTab_9=form
ListTab_col_id=ID
ListTab_col_item=Item
ListTab_col_item=&Item
ListTab_col_label=Label
ListTab_col_go=Go
ListTab_col_go=&Go
ListTab_col_go2=G&o

ListTab_addColumn=Add &Column
ListTab_filterByAttribute=Filter By Attri&bute
ListTab_filterByItem=Filter By &Item
ListTab_mark=Mark
ListTab_filterByItem=Filter B&y Item
ListTab_mark=Mar&k
ListTab_elementId=Eleme&nt ID
ListTab_markAttribute=&Filter By Attribute
ListTab_removeFilter=Rem&ove Filter
ListTab_removeFilter=Remo&ve Filter
ListTab_more=&More
ListTab_resetColumns=Rese&t Columns
ListTab_selectAnAttribute=Select an attribute
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ public String getText(Object element) {
});

colGoXmi = new TableViewerColumn(tvResults, SWT.NONE);
colGoXmi.getColumn().setText(Messages.ListTab_col_go);
colGoXmi.getColumn().setText(Messages.ListTab_col_go2);
requiredColumns.put("GoXmi", colGoXmi.getColumn()); //$NON-NLS-1$
colGoXmi.setLabelProvider(new ColumnLabelProvider() {
@Override
Expand Down Expand Up @@ -582,7 +582,7 @@ public String getText(Object element) {
app.getContext().set("org.eclipse.e4.tools.active-object-viewer", this); //$NON-NLS-1$

final EAttributeTableViewerColumn colId = new EAttributeTableViewerColumn(tvResults,
"elementId", "elementId", context); //$NON-NLS-1$//$NON-NLS-2$
Messages.ListTab_elementId, "elementId", context); //$NON-NLS-1$
defaultColumns.put("elementId", colId); //$NON-NLS-1$

final EAttributeTableViewerColumn colLabel = new EAttributeTableViewerColumn_Markable(tvResults,
Expand Down

0 comments on commit d7b4ba7

Please sign in to comment.