Welcome to the Power Users community on Codidact!
Power Users is a Q&A site for questions about the usage of computer software and hardware. We are still a small site and would like to grow, so please consider joining our community. We are looking forward to your questions and answers; they are the building blocks of a repository of knowledge we are building together.
Post History
I finally found a solution thanks to @bogdanw at https://stackoverflow.com/a/77256214/2777074 The idea is to create a file called UIKit.plist with the content: <?xml version="1.0" encoding="UT...
Answer
#3: Post edited
- I finally found a solution thanks to @bogdanw at https://stackoverflow.com/a/77256214/2777074
- The idea is to create a file called `UIKit.plist` with the content:
- ```
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
- <plist version="1.0">
- <dict>
- <key>redesigned_text_cursor</key>
- <dict>
- <key>Enabled</key>
- <false/>
- </dict>
- </dict>
- </plist>
- ```
This file should then be placed in `/Library/Preferences/FeatureFlags/Domain`
- I finally found a solution thanks to @bogdanw at https://stackoverflow.com/a/77256214/2777074
- The idea is to create a file called `UIKit.plist` with the content:
- ```
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
- <plist version="1.0">
- <dict>
- <key>redesigned_text_cursor</key>
- <dict>
- <key>Enabled</key>
- <false/>
- </dict>
- </dict>
- </plist>
- ```
- This file should then be placed in `/Library/Preferences/FeatureFlags/Domain` and the system restarted.
#2: Post edited
- I finally found a solution thanks to @bogdanw at https://stackoverflow.com/a/77256214/2777074
The idea is to create a file called `UIKit.plist` in `/Library/Preferences/FeatureFlags/Domain` with the content:- ```
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
- <plist version="1.0">
- <dict>
- <key>redesigned_text_cursor</key>
- <dict>
- <key>Enabled</key>
- <false/>
- </dict>
- </dict>
- </plist>
- ```
- I finally found a solution thanks to @bogdanw at https://stackoverflow.com/a/77256214/2777074
- The idea is to create a file called `UIKit.plist` with the content:
- ```
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
- <plist version="1.0">
- <dict>
- <key>redesigned_text_cursor</key>
- <dict>
- <key>Enabled</key>
- <false/>
- </dict>
- </dict>
- </plist>
- ```
- This file should then be placed in `/Library/Preferences/FeatureFlags/Domain`
#1: Initial revision
I finally found a solution thanks to @bogdanw at https://stackoverflow.com/a/77256214/2777074 The idea is to create a file called `UIKit.plist` in `/Library/Preferences/FeatureFlags/Domain` with the content: ``` <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>redesigned_text_cursor</key> <dict> <key>Enabled</key> <false/> </dict> </dict> </plist> ```