<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.mudlet.org/index.php?action=history&amp;feed=atom&amp;title=Area_51%2FMudlet_File_Locations</id>
	<title>Area 51/Mudlet File Locations - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.mudlet.org/index.php?action=history&amp;feed=atom&amp;title=Area_51%2FMudlet_File_Locations"/>
	<link rel="alternate" type="text/html" href="https://wiki.mudlet.org/index.php?title=Area_51/Mudlet_File_Locations&amp;action=history"/>
	<updated>2026-06-18T21:37:06Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.35.0</generator>
	<entry>
		<id>https://wiki.mudlet.org/index.php?title=Area_51/Mudlet_File_Locations&amp;diff=23082&amp;oldid=prev</id>
		<title>Vadi: Stage docs for highDpiScaleFactorRoundingPolicy (PR #9164) - to migrate to Mudlet File Locations on release</title>
		<link rel="alternate" type="text/html" href="https://wiki.mudlet.org/index.php?title=Area_51/Mudlet_File_Locations&amp;diff=23082&amp;oldid=prev"/>
		<updated>2026-04-17T16:51:09Z</updated>

		<summary type="html">&lt;p&gt;Stage docs for highDpiScaleFactorRoundingPolicy (PR #9164) - to migrate to Mudlet File Locations on release&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&amp;#039;&amp;#039;Staging area for changes to [[Mudlet File Locations]] - to be migrated once the corresponding release ships.&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
== Mudlet.ini settings ==&lt;br /&gt;
&lt;br /&gt;
Mudlet stores most preferences in a per-user &amp;#039;&amp;#039;&amp;#039;Mudlet.ini&amp;#039;&amp;#039;&amp;#039; file inside the config directory shown above (e.g. &amp;lt;code&amp;gt;~/.config/mudlet/Mudlet.ini&amp;lt;/code&amp;gt; on Linux/macOS, &amp;lt;code&amp;gt;%userprofile%\.config\mudlet\Mudlet.ini&amp;lt;/code&amp;gt; on Windows). Almost all of these are managed for you through [[Manual:Profile_Preferences|Profile Preferences]] - the table below documents only the advanced settings that have no UI and must be edited in the file directly.&lt;br /&gt;
&lt;br /&gt;
Edit Mudlet.ini while Mudlet is closed, otherwise your changes may be overwritten on exit.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Key !! Description !! Type !! Default !! Valid values !! Available since&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;highDpiScaleFactorRoundingPolicy&amp;lt;/code&amp;gt;&lt;br /&gt;
| Controls how Qt rounds fractional display scale factors (e.g. Windows display scaling at 125%, 150%, 175%). Mudlet 4.19 used Qt 5, which rounded by default; Mudlet 5+ uses Qt 6, which passes fractional scales through unchanged - this can make widgets appear larger than they did in 4.19. Set this to restore the older sizing if you prefer it. The setting has no effect on macOS and is ignored if the &amp;lt;code&amp;gt;QT_SCALE_FACTOR_ROUNDING_POLICY&amp;lt;/code&amp;gt; environment variable is set. Values are case-insensitive.&lt;br /&gt;
| string&lt;br /&gt;
| &amp;lt;code&amp;gt;PassThrough&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;PassThrough&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;Round&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;RoundPreferFloor&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;Ceil&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;Floor&amp;lt;/code&amp;gt;&lt;br /&gt;
| 4.21&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
How each value behaves at common Windows scaling levels:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Value !! 125% (1.25x) !! 150% (1.5x) !! 175% (1.75x)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;PassThrough&amp;lt;/code&amp;gt; (default) || 1.25x || 1.5x || 1.75x&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Round&amp;lt;/code&amp;gt; || 1x || 2x || 2x&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;RoundPreferFloor&amp;lt;/code&amp;gt; || 1x || 1x || 2x&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Ceil&amp;lt;/code&amp;gt; || 2x || 2x || 2x&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Floor&amp;lt;/code&amp;gt; || 1x || 1x || 1x&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Example:&amp;#039;&amp;#039;&amp;#039; to make a Windows machine at 125% display scaling render Mudlet at 100% (matching 4.19 behavior), add the following to Mudlet.ini and restart Mudlet:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
highDpiScaleFactorRoundingPolicy=Round&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
* [[Manual:Profile_Preferences|Profile Preferences]] - settings configurable through the UI&lt;br /&gt;
* [[Configuration_Options|Configuration Options]] - per-profile settings configurable from Lua via &amp;lt;code&amp;gt;getConfig()&amp;lt;/code&amp;gt; / &amp;lt;code&amp;gt;setConfig()&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Vadi</name></author>
	</entry>
</feed>