| 930 | app::ModuleLightWidget* light; |
| 931 | |
| 932 | VCVLightBezel() { |
| 933 | light = new VCVBezelLight<TLightBase>; |
| 934 | // Move center of light to center of box |
| 935 | light->box.pos = box.size.div(2).minus(light->box.size.div(2)); |
| 936 | addChild(light); |
| 937 | } |
| 938 | |
| 939 | app::ModuleLightWidget* getLight() { |
| 940 | return light; |