================ idWindow::Interactive ================ */
| 4114 | ================ |
| 4115 | */ |
| 4116 | bool idWindow::Interactive() { |
| 4117 | if ( scripts[ ON_ACTION ] ) { |
| 4118 | return true; |
| 4119 | } |
| 4120 | int c = children.Num(); |
| 4121 | for (int i = 0; i < c; i++) { |
| 4122 | if (children[i]->Interactive()) { |
| 4123 | return true; |
| 4124 | } |
| 4125 | } |
| 4126 | return false; |
| 4127 | } |
| 4128 | |
| 4129 | /* |
| 4130 | ================ |
no test coverage detected