mirror of
https://github.com/brl/mutter.git
synced 2024-11-22 08:00:42 -05:00
monitor-manager/dummy: Make modes env var override the defaults
So that one can effectively change the default resolution. https://gitlab.gnome.org/GNOME/mutter/merge_requests/529
This commit is contained in:
parent
bd7704f9e1
commit
980d9b1042
@ -145,14 +145,6 @@ append_monitor (MetaMonitorManager *manager,
|
|||||||
const char *mode_specs_str;
|
const char *mode_specs_str;
|
||||||
GList *l;
|
GList *l;
|
||||||
|
|
||||||
for (i = 0; i < G_N_ELEMENTS (default_specs); i++)
|
|
||||||
{
|
|
||||||
CrtcModeSpec *spec;
|
|
||||||
|
|
||||||
spec = g_memdup (&default_specs[i], sizeof (CrtcModeSpec));
|
|
||||||
mode_specs = g_list_prepend (mode_specs, spec);
|
|
||||||
}
|
|
||||||
|
|
||||||
mode_specs_str = getenv ("MUTTER_DEBUG_DUMMY_MONITORS_SPECS");
|
mode_specs_str = getenv ("MUTTER_DEBUG_DUMMY_MONITORS_SPECS");
|
||||||
if (mode_specs_str && *mode_specs_str != '\0')
|
if (mode_specs_str && *mode_specs_str != '\0')
|
||||||
{
|
{
|
||||||
@ -181,6 +173,16 @@ append_monitor (MetaMonitorManager *manager,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
for (i = 0; i < G_N_ELEMENTS (default_specs); i++)
|
||||||
|
{
|
||||||
|
CrtcModeSpec *spec;
|
||||||
|
|
||||||
|
spec = g_memdup (&default_specs[i], sizeof (CrtcModeSpec));
|
||||||
|
mode_specs = g_list_prepend (mode_specs, spec);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
for (l = mode_specs; l; l = l->next)
|
for (l = mode_specs; l; l = l->next)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user