mirror of
https://github.com/pbek/QOwnNotes.git
synced 2025-06-29 05:19:55 +00:00
13 lines
337 B
Bash
13 lines
337 B
Bash
|
#!/usr/bin/env bash
|
||
|
#
|
||
|
# This script is a bash script that replaces the string "Qt::Orientation::Vertical"
|
||
|
# with "Qt::Vertical" in "src/dialogs/settingsdialog.ui" to fix the UI in Qt 5.15
|
||
|
#
|
||
|
|
||
|
set -e
|
||
|
|
||
|
# Perform the replacement
|
||
|
sed -i 's/Qt::Orientation::Vertical/Qt::Vertical/g' src/dialogs/settingsdialog.ui
|
||
|
|
||
|
echo "Replacement complete."
|