🧹 revert here

This commit is contained in:
Vladislav Nepogodin 2022-12-31 01:24:49 +04:00
parent 4e9b96ff0e
commit 2ba35e0cfd
No known key found for this signature in database
GPG Key ID: B62C3D10C54D5DA9

View File

@ -1046,8 +1046,8 @@ void mount_opts(bool force) noexcept {
// If mount options selected, confirm choice
if (!mount_opts_info.empty()) {
auto confirm_text = Container::Vertical({
Renderer([] { return paragraphAlignLeft("Confirm the following mount options:"); }),
Renderer([&] { return text(mount_opts_info) | dim; }),
Renderer([] { return paragraphAlignLeft("Confirm the following mount options:"); }),
Renderer([&] { return text(mount_opts_info) | dim; }),
});
const auto& do_mount = detail::yesno_widget(confirm_text, size(HEIGHT, LESS_THAN, 10) | size(WIDTH, LESS_THAN, 75));
/* clang-format off */