Sets window transparency based off slider setting and stores value in self.options.
(self, event=None)
| 938 | self.updateList(outlist, duration=duration) |
| 939 | |
| 940 | def _setTransparency(self, event=None): |
| 941 | ''' |
| 942 | Sets window transparency based off slider setting and stores |
| 943 | value in self.options. |
| 944 | ''' |
| 945 | alpha = self.alpha_slider.GetValue() |
| 946 | self.SetTransparent(alpha) |
| 947 | self.options.Set("GuiAlpha", alpha) |
| 948 | self.Layout() |
| 949 | |
| 950 | def updateAlert(self, latest_ver, cur_ver): |
| 951 | ''' |