6.7.0 - Alpha14 - Fine tuning

This commit is contained in:
SuperMonster003
2026-01-16 18:22:40 +08:00
parent 580b2d642c
commit e899906634
11 changed files with 33 additions and 24 deletions

View File

@@ -257,7 +257,7 @@ open class ConsoleImpl(val uiHandler: UiHandler) : AbstractConsole() {
content("$msgReason, $msgAction.")
widgetThemeColor()
cancelable(false)
negativeText(R.string.dialog_button_quit)
negativeText(R.string.dialog_button_abandon)
negativeColorRes(R.color.dialog_button_default)
positiveText(R.string.dialog_button_continue)
positiveColorRes(R.color.dialog_button_attraction)

View File

@@ -332,7 +332,7 @@ public final class ImageFeatureMatching {
* @param keyPoint Detected key points in the image.<br>
* zh-CN: 在图像中检测到的关键点集.
* @param corners Virtual corners of the image after scale, always [TL, TR, BL, BR]. Used for homography calculation.<br>
* zh-CN: 缩放后图像的虚拟四角点坐标, 按 [左上,右上,左下,右下] 顺序, 用于单应矩阵计算.
* zh-CN: 缩放后图像的虚拟四角点坐标, 按 [左上, 右上, 左下, 右下] 顺序, 用于单应矩阵计算.
*/
public FeatureMatchingDescriptor(Mat descriptors, MatOfKeyPoint keyPoint, MatOfPoint2f corners) {
mDescriptors = descriptors;

View File

@@ -170,7 +170,7 @@ public class CircularMenu implements LayoutInspector.CaptureAvailableListener {
DialogUtils.showDialog(new AppLevelThemeDialogBuilder(mContext)
.title(mContext.getString(R.string.text_no_root_access))
.content(mContext.getString(R.string.no_root_access_for_record))
.positiveText(R.string.dialog_button_quit)
.positiveText(R.string.dialog_button_abandon)
.positiveColorRes(R.color.dialog_button_failure)
.build());
} else {

View File

@@ -89,7 +89,7 @@ class LauncherIconPreference : MaterialListPreference, SharedPreferences.OnShare
title(R.string.text_prompt)
content(R.string.text_transparent_background_launcher_icon_may_not_take_effect)
widgetThemeColor()
negativeText(R.string.text_quit)
negativeText(R.string.dialog_button_abandon)
negativeColorRes(R.color.dialog_button_default)
onNegative { dialog, _ -> dialog.dismiss().also { resetIfNeeded(R.string.key_launcher_icon_adaptive) } }
positiveText(R.string.dialog_button_continue)
@@ -136,7 +136,7 @@ class LauncherIconPreference : MaterialListPreference, SharedPreferences.OnShare
show()
}
}
negativeText(R.string.text_quit)
negativeText(R.string.dialog_button_abandon)
negativeColorRes(R.color.dialog_button_default)
onNegative { dialog, _ -> dialog.dismiss().also { syncValueWithCurrentComponent() } }
positiveText(R.string.dialog_button_continue)