mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-07-01 23:42:06 -04:00
text: change default rendering back to Qt
This commit is contained in:
@@ -29,7 +29,7 @@ DankModal {
|
||||
confirmButtonText = "Confirm";
|
||||
cancelButtonText = "Cancel";
|
||||
confirmButtonColor = Theme.primary;
|
||||
onConfirm = onConfirmCallback || ((text) => {});
|
||||
onConfirm = onConfirmCallback || (text => {});
|
||||
onCancel = onCancelCallback || (() => {});
|
||||
selectedButton = -1;
|
||||
keyboardNavigation = false;
|
||||
@@ -44,7 +44,7 @@ DankModal {
|
||||
confirmButtonText = options.confirmText || "Confirm";
|
||||
cancelButtonText = options.cancelText || "Cancel";
|
||||
confirmButtonColor = options.confirmColor || Theme.primary;
|
||||
onConfirm = options.onConfirm || ((text) => {});
|
||||
onConfirm = options.onConfirm || (text => {});
|
||||
onCancel = options.onCancel || (() => {});
|
||||
selectedButton = -1;
|
||||
keyboardNavigation = false;
|
||||
|
||||
Reference in New Issue
Block a user