heng30
heng30
源码 : #define s_chan_declare(name,TYPE,count) \ s_chan_t name[1 + ((count)*sizeof(TYPE) + sizeof(s_chan_t) - 1) / sizeof(sizeof(s_chan_t))] 不懂为什么是除以sizeof(sizeof(s_chan_t)), 而不是除以sizeof(s_chan_t)
在 void on_connection(uv_stream_t *stream, int status) 中已经对client对象初始化了: s_list_init(&client->list_node); s_list_attach(&server->running_clients, &client->list_node); 在 static void run_client(__async__, void *arg) 中再次初始化: s_list_init(&client->list_node); s_list_attach(&client->server->running_clients, &client->list_node); 重复初始化存在问题.
- platform: Android - Android target sdk version: 32 - language: Rust - slint version: v1.5.1 - style: material - code snippets. It works on Linux, but not works on...
- platform: Android - Android target sdk version: 32 - language: Rust - slint version: v1.5.1 - style: material - code snippets ``` TouchArea { moved => { debug("move ok");...
- Android - Rust - Slint v1.6 - Reproduce: > Input some words in LineEdit and call the `clear-focus()` fuction and the keyboard will hide. However, I switch the app...
- Android - Rust - Slint v1.6 - Reproduce: > tap the LineEdit input area, it will show the indicator. I don't input any word and call the `clear-focus ()`....