| 117 | } |
| 118 | |
| 119 | void SaveOpenFile(){ |
| 120 | if(!openPath.length()){ |
| 121 | SaveFileAs(); |
| 122 | } else { |
| 123 | SaveFile(openPath.c_str()); |
| 124 | } |
| 125 | } |
| 126 | |
| 127 | void OnWindowPaint(surface_t* surface){ |
| 128 | Lemon::Graphics::DrawRect(0, window->GetSize().y - 20, window->GetSize().x, 20, 160, 160, 160, surface); |
no test coverage detected