summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/Xconfig/resolution_and_depth.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Xconfig/resolution_and_depth.pm b/lib/Xconfig/resolution_and_depth.pm
index 39ba7b9..5b43691 100644
--- a/lib/Xconfig/resolution_and_depth.pm
+++ b/lib/Xconfig/resolution_and_depth.pm
@@ -65,6 +65,8 @@ sub size2default_resolution {
$monitorSize2resolution{round($size)} || ($size < 13 ? "640x480" : "1600x1200");
}
+sub XxY { &Xconfig::xfree::XxY }
+
sub to_string {
my ($resolution) = @_;
$resolution or return '';
@@ -237,7 +239,7 @@ sub set_resolution {
if (!$resolution->{automatic}) {
my $ratio = Xconfig::xfree::resolution2ratio($resolution, 'non-strict');
- @other = uniq_ { $_->{X} . 'x' . $_->{Y} } @other;
+ @other = uniq_ { XxY($_) } @other;
@other = grep { $_->{X} < $resolution->{X} } @other;
@other = filter_on_ratio($ratio, @other);