We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
右侧快捷标签排序后,推出排序模式后,排序还是混乱的
The text was updated successfully, but these errors were encountered:
这个问题的具体原因是,标签排序使用了时间戳为依据。 关键点在于,更改标签排序和创建标签,都使用了EhDB类里的insertQuickSearch函数,该函数内会给时间戳字段赋新值。 正常来想,应该有一个独立函数处理两个标签的时间戳交换,可能项目原作者在这里偷懒了。 不过要修改也可以。自行修复最快的方式为,Fork一份代码,找到insertQuickSearch函数的此处:
EhViewer/app/src/main/java/com/hippo/ehviewer/EhDB.java
Line 571 in a832610
quickSearch.time = quickSearch.time > 0 ? quickSearch.time : System.currentTimeMillis();
Sorry, something went wrong.
No branches or pull requests
右侧快捷标签排序后,推出排序模式后,排序还是混乱的
The text was updated successfully, but these errors were encountered: