Not user callable! Decrements the number of open windows
(self)
| 10176 | |
| 10177 | @classmethod |
| 10178 | def _DecrementOpenCount(self): |
| 10179 | """ |
| 10180 | Not user callable! Decrements the number of open windows |
| 10181 | """ |
| 10182 | self.NumOpenWindows -= 1 * (self.NumOpenWindows != 0) # decrement if not 0 |
| 10183 | # print('----- DECREMENTING Num Open Windows = {} ---'.format(Window.NumOpenWindows)) |
| 10184 | |
| 10185 | @classmethod |
| 10186 | def get_screen_size(self): |
no outgoing calls
no test coverage detected