ITADN

Fix DLG camera angle selection

#97Pull Requestth3w1zard1 创建于 2024-03-29已合并
T
th3w1zard1commented
There are seven Camera angles and they start from 0, so this check is incorrect: ```python elif node.camera_id == -1 and self.ui.cameraAngleSelect.currentIndex() == 6: self.ui.cameraAngleSelect.setCurrentIndex(0) ``` should be checking if it's == 7, or better yet check if it's greater than 7. Not sure why this check exists in the first place but w/e Without this change it's impossible to select 'Static Camera' ![image](https://github.com/NickHugi/PyKotor/assets/2219836/f86069d1-e112-49f1-9352-d9f2516867e1)
合并状态:已合并 合并于 2024-03-29 关闭于 2024-03-29 0 条评论