This bug and all of the duplicates show "Display Properties" setting the
virtual resolution to 2048x2048.

In bug #425760, Jani Monoses suggested a possible solution, by changing

   if int(self.resolution[0]) < int(self.optimal_virtual_resolution[0]) or \
           int(self.resolution[1]) < int(self.optimal_virtual_resolution[1]):
            self.resolution = self.optimal_virtual_resolution

to

   if int(self.resolution[0]) < int(self.optimal_virtual_resolution[0]) and \
           int(self.resolution[1]) < int(self.optimal_virtual_resolution[1]):
            self.resolution = self.optimal_virtual_resolution

changing "or" to "and" in the file /usr/share/screen-resolution-
extra/policyui.py. This also fixes this bug for me as well.

-- 
"Display Properties" sets virtual resolution too low
https://bugs.launchpad.net/bugs/433856
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in ubuntu.

-- 
desktop-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

Reply via email to