Kirito

Results 2 issues of Kirito

**Expected Behaviour** After clicking the `refresh path` button, it should turn gray and turn back to normal state in less than 1 second. **Actual Behaviour** After clicking the `refresh path`...

bug

测试代码如下 ``` #include using namespace std; #include "MiniEngine.h" #include "MiniEngine_Widget.h" using namespace MiniEngine; int AppMain() { Window wnd("Title",1280,768); Renderer rnd=wnd.getRenderer(); Texture t=rnd.loadTexture("1.png"); Texture b=rnd.loadTexture("2.png"); rnd.clear(); rnd.copyFullFill(t); rnd.update(); while(1) { SDL_Event...