~tapaal-contributor/tapaal/make-grid-reappear-on-export-tikz-cancel-1820016

« back to all changes in this revision

Viewing changes to src/pipe/gui/graphicElements/Place.java

merged in branch lp:~yrke/tapaal/remove-staticIgnoreSelect that changes the behaviour of the export feature (exports also animator configuration, selected transitions etc)

Show diffs side-by-side

added added

removed removed

Lines of Context:
72
72
                g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
73
73
                                RenderingHints.VALUE_ANTIALIAS_ON);
74
74
 
75
 
                if (selected && !ignoreSelection) {
 
75
                if (selected) {
76
76
                        g2.setColor(Pipe.SELECTION_FILL_COLOUR);
77
77
                        pnName.setForeground(Pipe.SELECTION_LINE_COLOUR);
78
78
                } else {
81
81
                }
82
82
                g2.fill(placeEllipse);
83
83
 
84
 
                if (selected && !ignoreSelection) {
 
84
                if (selected) {
85
85
                        g2.setPaint(Pipe.SELECTION_LINE_COLOUR);
86
86
                } else {
87
87
                        g2.setPaint(Pipe.ELEMENT_LINE_COLOUR);