Skip to content

Commit

Permalink
F19 Feature 1 snapshot, HALite legacy version LTS
Browse files Browse the repository at this point in the history
  • Loading branch information
jackHay22 committed Nov 19, 2019
1 parent a2fb602 commit 9728520
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/system_utils/Element.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

public enum Element {
// TODO: Decide on set spellings with Dave to represent these values.
Dy,Ti, Si, Al,Fe, Mn, Mg, Ca, Na, K, P,As, Ba,Bi, Ce, Cr,Cs, Cu,Er,Eu,Ag,Cd,Se,Co,
Dy,Ti, Si, Al,Fe, Mn, Mg, Ca, Na, K, P,As, Ba,Bi, Ce, Cr,Cs, Cu,Er,Eu,Ag,Cd,Se,Ge,Co,
Ga,Gd,Hf,Ho, La,Lu,Mo, Nb,Nd, Ni, Pb,Pr, Rb,Sb, Sc,Sm,Sn, Sr,Ta,Tb, Th,Tl,Tm,U, V,W, Y,Yb, Zn, Zr
}
2 changes: 1 addition & 1 deletion src/ui_stdlib/components/SideScrollPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public JScrollPane get_horiz_scrollable(int width, int height) {
horiz_scrollable.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
horiz_scrollable.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_NEVER);

horiz_scrollable.setPreferredSize(new Dimension(100, 70));
horiz_scrollable.setPreferredSize(new Dimension(width, height));

//graphical
horiz_scrollable.setBackground(SystemThemes.MAIN);
Expand Down
2 changes: 1 addition & 1 deletion src/ui_stdlib/views/RSquaredListElement.java
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ public void on_start() {

constraints.gridx = 1;
constraints.weightx = 1;
add(scrollable_pair_panel.get_horiz_scrollable(this.getWidth(), this.getHeight()), constraints);
add(scrollable_pair_panel.get_horiz_scrollable(100,70), constraints);

constraints.gridx = 2;
constraints.weightx = 0;
Expand Down

0 comments on commit 9728520

Please sign in to comment.