Emmanuel
Emmanuel
Weird, I can replicate on my phone (LG K11alpha), maybe it's a different layout?
Here you can see the empty item appearing:
> No apps added to favorites bar. Yes > Turned on transparent favorites bar. Yes > Turned on "Show favorites above search bar". Probably, couldn't find the setting
Turning off the favourites bar solves the issue, nevertheless, an empty favourites bar should probably not be shown.
Also please add support for other functions, like `SUM()` and `AVG()`.
Something like the old ``` .setShowcaseEventListener(new SimpleShowcaseEventListener() { @Override public void onShowcaseViewHide(ShowcaseView showcaseView) { } }) ```
For me it worked perfectly first time: Ubuntu 20.04, clion 2023.1.4.
Timestamps in UNIX are not like in Windows, there's no creation date saved on the file (that is, on the inode). > st_atime > This is the file's last access...
For a less technical explanation see [here](https://unix.stackexchange.com/questions/20460/how-do-i-do-a-ls-and-then-sort-the-results-by-date-created).
Here's the solution: ``` int targetfile = open(target_file_path, O_WRONLY|O_CREAT|(no_clobber ? O_EXCL : 0), 0600); struct timespec times[] = { source_stat->st_atim, source_stat->st_mtim, }; futimens(targetfile, times); ``` Source: [How difficult is it...