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
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) {
137
137
selectable = binding ;
138
138
}
139
139
140
- public boolean isInteractive () { return interactive .get (); }
140
+ public boolean isInteractive () {
141
+ return interactive .get ();
142
+ }
141
143
142
144
public boolean isSelectable () {
143
145
return selectable .get ();
144
146
}
145
147
146
- public void setInteractive (boolean value ) { interactive .set (value ); }
148
+ public void setInteractive (boolean value ) {
149
+ interactive .set (value );
150
+ }
147
151
148
152
public void setSelectable (boolean value ) {
149
153
selectable .set (value );
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2014 MovingBlocks
2
+ * Copyright 2016 MovingBlocks
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
39
39
import java .util .ArrayList ;
40
40
import java .util .List ;
41
41
42
- /**
43
- */
44
42
public class ItemIcon extends CoreWidget {
45
43
46
44
@ LayoutConfig
You can’t perform that action at this time.
0 commit comments