mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 02:15:43 -04:00
display: fix assertions when removing window that isn't open yet
This commit is contained in:
parent
f37c070c7c
commit
512f305c12
@ -529,7 +529,11 @@ remove_window(GraphicsOutput *window) {
|
|||||||
// Also check whether it is in _new_windows.
|
// Also check whether it is in _new_windows.
|
||||||
{
|
{
|
||||||
MutexHolder new_windows_holder(_new_windows_lock, current_thread);
|
MutexHolder new_windows_holder(_new_windows_lock, current_thread);
|
||||||
|
size_t old_size = _new_windows.size();
|
||||||
_new_windows.erase(std::remove(_new_windows.begin(), _new_windows.end(), ptwin), _new_windows.end());
|
_new_windows.erase(std::remove(_new_windows.begin(), _new_windows.end(), ptwin), _new_windows.end());
|
||||||
|
if (count == 0 && _new_windows.size() < old_size) {
|
||||||
|
count = 1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (count == 0) {
|
if (count == 0) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user