mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-01 01:07:51 -04:00
oops typo
This commit is contained in:
parent
9f094d495a
commit
c61f5f2b64
@ -284,7 +284,7 @@ ConfigVariableString window_title
|
|||||||
("window-title", "Panda");
|
("window-title", "Panda");
|
||||||
|
|
||||||
ConfigVariableInt parent_window_handle
|
ConfigVariableInt parent_window_handle
|
||||||
("parent-window-title", 0,
|
("parent-window-handle", 0,
|
||||||
PRC_DESC("The window handle of the parent window to attach the Panda window "
|
PRC_DESC("The window handle of the parent window to attach the Panda window "
|
||||||
"to, for the purposes of creating an embedded window. This is "
|
"to, for the purposes of creating an embedded window. This is "
|
||||||
"an HWND on Windows, or the NSWindow pointer or XWindow pointer "
|
"an HWND on Windows, or the NSWindow pointer or XWindow pointer "
|
||||||
|
@ -121,7 +121,8 @@ operator == (const WindowProperties &other) const {
|
|||||||
_title == other._title &&
|
_title == other._title &&
|
||||||
_icon_filename == other._icon_filename &&
|
_icon_filename == other._icon_filename &&
|
||||||
_cursor_filename == other._cursor_filename &&
|
_cursor_filename == other._cursor_filename &&
|
||||||
_mouse_mode == other._mouse_mode);
|
_mouse_mode == other._mouse_mode &&
|
||||||
|
_parent_window == other._parent_window);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user