Mailinglist Archive: opensuse-commit (1828 mails)
| < Previous | Next > |
commit sax2
- From: root@xxxxxxxxxxxxxxx (h_root)
- Date: Mon, 01 Sep 2008 18:11:01 +0200
- Message-id: <20080901161101.A115D67815E@xxxxxxxxxxxxxxx>
Hello community,
here is the log from the commit of package sax2
checked in at Mon Sep 1 18:11:01 CEST 2008.
--------
--- sax2/sax2.changes 2008-08-27 03:48:59.000000000 +0200
+++ /mounts/work_src_done/STABLE/sax2/sax2.changes 2008-09-01
16:22:10.000000000 +0200
@@ -1,0 +2,7 @@
+Mon Sep 1 16:21:55 CEST 2008 - sndirsch@xxxxxxx
+
+- borderless SaX2 for xres <= 800 or yres <=600; this was hardcoded
+ to 800x600 before and resulted in problems with famous Netbook
+ resolution 1024x600 (bnc #419304)
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ sax2.spec ++++++
--- /var/tmp/diff_new_pack.Pc8221/_old 2008-09-01 18:10:50.000000000 +0200
+++ /var/tmp/diff_new_pack.Pc8221/_new 2008-09-01 18:10:50.000000000 +0200
@@ -47,7 +47,7 @@
PreReq: /bin/rm /bin/mkdir /usr/bin/chroot %fillup_prereq
%insserv_prereq
Summary: SuSE advanced X Window System-configuration
Version: 8.1
-Release: 500
+Release: 504
Group: System/X11/Utilities
License: GPL v2 or later
Source: sax2.tar.bz2
@@ -522,6 +522,10 @@
%endif
%changelog
+* Mon Sep 01 2008 sndirsch@xxxxxxx
+- borderless SaX2 for xres <= 800 or yres <=600; this was hardcoded
+ to 800x600 before and resulted in problems with famous Netbook
+ resolution 1024x600 (bnc #419304)
* Wed Aug 27 2008 sndirsch@xxxxxxx
- the logic in existing dynamic Radeon.pl profile was obsolete since
a long time - AFAIK; replaced with the logic also used by Intel.pl,
++++++ sax2.tar.bz2 ++++++
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/sax/api/xapi.cpp new/sax/api/xapi.cpp
--- old/sax/api/xapi.cpp 2008-06-24 03:21:05.000000000 +0200
+++ new/sax/api/xapi.cpp 2008-09-01 16:21:40.000000000 +0200
@@ -200,7 +200,7 @@
//QWidget::WindowFlags wflags = Qt::WType_TopLevel;
int width = qApp->desktop()->width();
int height = qApp->desktop()->height();
- if ((mSizeCheck) && (width == 800) && (height == 600)) {
+ if ((mSizeCheck) && ((width <= 800) || (height <= 600))) {
wflags |= Qt::WStyle_Customize | Qt::WStyle_NoBorder;
}
sccGUI = new SaXGUI::SCCFrame (
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx
| < Previous | Next > |