Skip to content

Commit

Permalink
Fixed issue #1105.
Browse files Browse the repository at this point in the history
  • Loading branch information
nilsschmidt1337 committed Aug 26, 2024
1 parent e70929e commit a9ffcf8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/org/nschmidt/ldparteditor/data/GDataCSG.java
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,7 @@ public synchronized String inlinedString(final BFC bfc, final GColour colour) {
// Try to do a rebuild
final List<GDataCSG> csgData = new ArrayList<>();
final DatFile df = Inliner.datfile;
GDataCSG.resetCSG(df, true);
GDataCSG.resetCSG(df, false);
GData g = df.getDrawChainStart();
while ((g = g.next) != null) {
if (g instanceof GDataCSG gcsg) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,7 @@ public void mouseDoubleClick(MouseEvent e) {
Label lblDoubleClick = Theming.label(cmpContainer, I18n.rightToLeftStyle());
lblDoubleClick.setText(I18n.COLOUR_DOUBLE_CLICK);

final Tree tree = new Tree(cmpContainer, SWT.BORDER | SWT.MULTI | SWT.V_SCROLL, 67);
final Tree tree = new Tree(cmpContainer, SWT.BORDER | SWT.MULTI | SWT.V_SCROLL, 68);
this.trColourTreePtr[0] = tree;
treeColours = tree;

Expand Down

0 comments on commit a9ffcf8

Please sign in to comment.