bizehao

Results 15 issues of bizehao

When I look at the code, I find that view:: refresh (...) is not a local refresh, and all refreshes are brushed as a whole.

The input_box is There is a subscript out of bounds problem in https://github.com/cycfi/elements/blob/ae7b87a8cc53258fac7d1d5a7b96da2994116dcf/lib/src/element/text.cpp#L885 When entering the first words, the _select_end is 1, get_text() value size is 1,out of range. Here...

When the number of elements on the interface is too large, the interface will get stuck by keyboard input.

raspberry pi 4b 64bit os Compilation failed,Does it support the raspberry pi os?

我在你MyComponentDelegate类里添加了hook函数 但是无效 `@Override public void beforeApplicationCreate(String packageName, String processName, Application application) { if(packageName.equals("com.bzh.myxposedapp")){ Log.e("bbzzhh2"," " + packageName+ " " + processName); XposedBridge.log("dndn handleLoadPackage exec"); XposedHelpers.findAndHookMethod("com.bzh.myxposedapp.MainActivity", application.getClassLoader(),"mmString", new XC_MethodHook(){ @Override protected...

我写了一个demo,在绘制上skia比qt的渲染要慢,这个为什么

### Describe the bug ``` cpp: void TabContentPage::Flush_Click(winrt::Windows::Foundation::IInspectable const& sender, winrt::Microsoft::UI::Xaml::RoutedEventArgs const& e) { MessageTip().IsOpen(true); } ``` cpp winrt error: WinRT originate error - 0x80073D54 : 'The process has no...

``` template struct abi { using type = int64_t; }; ``` This form of type will resolve errors

bug
PR Welcome

用手机写得,格式不好弄,不好意思 windows 的mutex destroyed while busy问题找到了,我觉得这不只是windows的问题, 在libgo\routine_sync\rutex.h 227行左右这块,你定义了一个局部变量 RutexWaiter rw(*switcher); 在252行,你 进行了waiters_.push(&rw);,相当于把局部变量的指针放进了容器了,出这个函数,这个局部变量就析构了。我把  RutexWaiter rw(*switcher);改成堆变量 new的形式,就正常了,测试后没有出现 mutex destroyed while busy

I used the following code to draw a fill five-pointed star, and I don't know why the fill color is protruding ``` nvgBeginPath(vg); struct Point { float x; float y;...