Skip to content

Commit

Permalink
fixing minor background glitch
Browse files Browse the repository at this point in the history
  • Loading branch information
Vojtech Janota committed Nov 10, 2014
1 parent f0b8555 commit 9dce2fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
public class HorizonWorkspaceSelector extends JPanel {

public HorizonWorkspaceSelector(Project project, AuthenticationInfo authenticationInfo) {
setOpaque(false);
WorkspaceService workspaceService = project.getComponent(WorkspaceService.class);
add(new JLabel("Workspace"));
WorkspaceComboBox workspaceComboBox = new WorkspaceComboBox(project,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ public EntityEditor(final Project project, String titleTemplate, final Entity en
}

JTextPane addProperty = new JTextPane();
addProperty.setBackground(gridFooter.getBackground());
addProperty.setEditorKit(new HTMLEditorKit());
addProperty.setText("<html><body><i>Property not listed? Click <a href='#addProperty'>here</a></i></body></html>");
addProperty.setEditable(false);
Expand Down

0 comments on commit 9dce2fa

Please sign in to comment.