SamSandq
SamSandq
Just to add, the same for the iPad implementation; next to the icons for adding a link and an image.
As has been pointed out elsewhere, this is not a UI bug, but a V one. Simply compile the program first and then run separately. v demo_label.v ./demo_label
FYI, the popup control works perfectly, and in my case is also better, since I do not wish to be able to edit the values. However, I noticed that there...
Yes, I am using that to get the selected text. But what I am after is to get the text of any item using its index. Cheers, Sam --------------------------------- Sam...
You are right, the following code will obtain the mouse position in a control: ``` V2Df gui_mouse_pos_in_view(Window *w, void *v) { V2Df mp = gui_mouse_pos(); R2Df frame = window_control_frame(w, (GuiControl...
You may close this issue as solved.
Unfortunately, neither `tableview_select()` nor `tableview_focus_row()` scrolls my table to the correct row. I use ``` uint32_t h = tableview_get_row_height(app->collectionView); view_scroll_y((View *) app->collectionView, found*h); ``` with my own `tableview_get_row_height(...)`. That actually...
This is a very interesting topic… I found this `https://en.wikipedia.org/wiki/Comparison_gallery_of_image_scaling_algorithms` and it provides a good overview of what’s available.
There might be a problem in streams. I use (per Francisco's earlier suggestion) the following code to generate PNG thumbnail images for my photos on import: ``` Stream *stm =...