| 1861 | } |
| 1862 | |
| 1863 | IDrawableModule* ModularSynth::GetTopModalFocusItem() const |
| 1864 | { |
| 1865 | if (mModalFocusItemStack.empty()) |
| 1866 | return nullptr; |
| 1867 | return mModalFocusItemStack.back(); |
| 1868 | } |
| 1869 | |
| 1870 | bool ModularSynth::IsModalFocusItem(IDrawableModule* item) const |
| 1871 | { |
no test coverage detected