Alexey Rochev
Alexey Rochev
After I stop autoscrolling Chromium can't display pointer cursor over links on most websites unless I do left-click on empty space of the page.
When `androidx.lifecycle.viewmodel.compose.viewModel()` function is called inside plain `ComponentActivity` or `Fragment`, it uses `ViewModelStoreOwner` of activity/fragment which implements `HasDefaultViewModelProviderFactory` and returns `SavedStateViewModelFactory`. This allows using `ViewModel` that accepts `SavedStateHandle` or `Application`...
With androidx.navigation you have getBackStackEntry method that returns implementation of ViewModelStoreOwner interface for any destination that is currently on back stack. This is handy for sharing state between parent and...
androidx.lifecycle 2.5 added new API for easier creation of custom ViewModel factories. It needs some integration from this library. Namely, NavHostEntry needs to override getDefaultViewModelCreationExtras() method to set default CreationExtras...
I have enum class that was created by Parser by using `new Info("name").enumerate()`. When I pass it to native method (field setter), my app crashes with following error: ``` A/queim.tremotes:...
For example, for this Java code: ```Java @Namespace("NativeLibrary") @Properties(inherit = org.example.NativeLibraryConfig.class) public class NativeClass extends Pointer { static { Loader.load(); } /** Default native constructor. */ public NativeClass() { super((Pointer)null);...
QupZilla 2.1.1, Arch Linux. When native scrollbars are enabled, smooth scrolling is not so smooth, looks like like 30 fps.
If you use cxxopts like this: ``` std::vector files; cxxopts::Options opts(appName, versionString); opts.add_options() ("files", "", cxxopts::value(files)); opts.parse_positional("files"); ``` And call executable like this (notice the quotes): `./foo /home/bar/file_without_comma "/home/bar/file, with...
Qt 5.10 made QQC2 more usable on desktop, also KF5 has QQC2 style that uses QStyle for rendering for better integration.