File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed
engine/src/main/java/org/terasology/rendering/nui/widgets
modules/Core/src/main/java/org/terasology/rendering/nui/layers/ingame/inventory Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -137,13 +137,17 @@ public void bindSelectable(Binding<Boolean> binding) {
137137 selectable = binding ;
138138 }
139139
140- public boolean isInteractive () { return interactive .get (); }
140+ public boolean isInteractive () {
141+ return interactive .get ();
142+ }
141143
142144 public boolean isSelectable () {
143145 return selectable .get ();
144146 }
145147
146- public void setInteractive (boolean value ) { interactive .set (value ); }
148+ public void setInteractive (boolean value ) {
149+ interactive .set (value );
150+ }
147151
148152 public void setSelectable (boolean value ) {
149153 selectable .set (value );
Original file line number Diff line number Diff line change 11/*
2- * Copyright 2014 MovingBlocks
2+ * Copyright 2016 MovingBlocks
33 *
44 * Licensed under the Apache License, Version 2.0 (the "License");
55 * you may not use this file except in compliance with the License.
3939import java .util .ArrayList ;
4040import java .util .List ;
4141
42- /**
43- */
4442public class ItemIcon extends CoreWidget {
4543
4644 @ LayoutConfig
You can’t perform that action at this time.
0 commit comments