We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c040f32 commit 4ef79f7Copy full SHA for 4ef79f7
External/Plugins/ProjectManager/Controls/NewProjectDialog.cs
@@ -283,6 +283,13 @@ public NewProjectDialog()
283
projectListView.Items.Clear();
284
projectListView.TileSize = PluginCore.Helpers.ScaleHelper.Scale(new Size(170, 22));
285
286
+ // Better for non themed platforms
287
+ if (!OSFeature.Feature.IsPresent(OSFeature.Themes))
288
+ {
289
+ this.projectListView.View = View.SmallIcon;
290
+ this.projectListView.ShowGroups = false;
291
+ }
292
+
293
if (!Directory.Exists(ProjectPaths.ProjectTemplatesDirectory))
294
{
295
string info = TextHelper.GetString("Info.TemplateDirNotFound");
0 commit comments