Settings UI lacks concept of inherited default value
See original GitHub issuere #57304
- open settings UI
- locate ‘Suggest Font Size’
- notice how the UI shows
0
which isn’t true - the default value is the font size of the editor.
Issue Analytics
- State:
- Created 5 years ago
- Comments:9 (7 by maintainers)
Top Results From Across the Web
css default if inherit not defined - Stack Overflow
using the given example, I want a .link css the applies the same font-size as the parent td, but if the parent td...
Read more >Defining Default Values with the ShouldSerialize and Reset ...
ShouldSerialize and Reset are optional methods that you can provide for a property, if the property does not have a simple default value....
Read more >User and Workspace Settings - Visual Studio Code
The Settings editor is the UI that lets you review and modify setting values that are stored in a settings.json file. You can...
Read more >Inheritance - CSS: Cascading Style Sheets - MDN Web Docs
In CSS, inheritance controls what happens when no value is specified for a property on an element.
Read more >Inheritance and Composition: A Python OOP Guide
calculate_payroll() method exposed on each employee object. Now, you implement a base class Employee that handles the common interface for every employee type:....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Or just add
(0 to use the editor's font size)
to the description.Well, it should show 12 or whatever the editor font size is. The fact that we internally treat 0 as ‘use editor font size’ is an implementation that leaks into the UI. I think a user that didn’t implement the suggest widget won’t understand this