The Inbox: System-ct.1175.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Inbox: System-ct.1175.mcz

commits-2
A new version of System was added to project The Inbox:
http://source.squeak.org/inbox/System-ct.1175.mcz

==================== Summary ====================

Name: System-ct.1175
Author: ct
Time: 28 September 2020, 1:44:09.091219 pm
UUID: 9b5c7784-f99d-6a4e-8980-42b8046fa7b9
Ancestors: System-topa.1174

Fixes hi-dpi images after resetting UI theme in System-topa.1174. See http://forum.world.st/The-Trunk-System-topa-1174-mcz-tp5122421p5122455.html. Thanks to Marcel for the hint!

=============== Diff against System-topa.1174 ===============

Item was changed:
+ (PackageInfo named: 'System') postscript: '| delta |
+ "Reset hi-dpi mode after resetting UI them in System-topa.1174. See http://forum.world.st/The-Trunk-System-topa-1174-mcz-tp5122421p5122455.html."
+ delta := Preferences standardSystemFont pointSize - 9.
+ delta isZero ifFalse: [
+ [Preferences restoreDefaultFonts] valueSuppressingMessages: #(''Do you want to apply*'').
+ Preferences changeFontSize: delta].'!
- (PackageInfo named: 'System') postscript: 'UserInterfaceTheme cleanUpAndReset.'!