Fix various assorted warnings
Fix various warnings that don't have enough instances to merit individual commits. Also fixes a potential bug in audio_server.cpp.
This commit is contained in:
@@ -2304,7 +2304,7 @@ void Tree::_gui_input(Ref<InputEvent> p_event) {
|
||||
int col, h, section;
|
||||
TreeItem *it = _find_item_at_pos(root, mpos, col, h, section);
|
||||
|
||||
if (drop_mode_flags && it != drop_mode_over || section != drop_mode_section) {
|
||||
if ((drop_mode_flags && it != drop_mode_over) || section != drop_mode_section) {
|
||||
drop_mode_over = it;
|
||||
drop_mode_section = section;
|
||||
update();
|
||||
|
||||
Reference in New Issue
Block a user