Custom Query (6 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (4 - 6 of 6)

1 2
Ticket Resolution Summary Owner Reporter
#8 fixed XCenter - Increase the Icon Size. martini
Description

Hello

On machines with higher resolutions like 1,920 x 1,080, I usually increase the size of XCenter to a more confortable size. But there is the issue that icons size on any widget remains the same.

I was wondering if something can be done so the user can increase the size of the icons of XCenter.

Regards

#2 fixed acpiDoPowerOff() increase timeout to ensure system switches of reliable Andib
Description

In \src\startshut\apm.c function VOID acpiDoPowerOff(VOID) line 406 DosSleep?(700); has to be used to switch down my system reliable.

I tested this over many years and retested again the latest months. My MSI board needs 700ms instead the 250ms which is in the official sources. Shutdown on this system does not work reliable with values <700ms. Most of the time shutdown works with 250ms and 500ms too. But reliable switching off monitor out and all fans is only guaranteed with 700ms. Here is the relevant part of the code with my comments over the years. As you can see I watch this problem since many years. No clue how many systems out there are do not fully shut down sporadically as mine. But I'm pretty sure my system is not the only one. But probably I'm the only one who observed this problem and tested with different values long enough to assure this is the place where the problem can be fixed.

VOID acpiDoPowerOff(VOID)
{
     ULONG i, ulCpuCount = 1;

     /* Set all CPUs to OffLine, except CPU 1 */
     DosQuerySysInfo(QSV_NUMPROCESSORS, QSV_NUMPROCESSORS, &ulCpuCount, sizeof(ulCpuCount));
     for (i = 2; i <= ulCpuCount; i++)
         DosSetProcessorStatus(i, PROC_OFFLINE);

    DosSleep(700);  // @@changed V1.0.9 (2009-05-29) [shl]: ensure system really has time to go idle
                    // @@changed V1.0.10(2014-04-29) [AB]: test with 500 instead 250
		// @@changed V1.0.10(2014-04-29) [AB]: test with 700 cause sometimes video out (X300) is not switched off
		// @@changed V1.0.13(2020-01-16) [AB]: test with 250 again cause this is in official version from Rich
		// @@changed V1.0.13(2020-02-16) [AB]: back to 500 as 250 definitely does not reliable switch of video out AND fans
		// @@changed V1.0.13(2020-03-01) [AB]: back to 700 as 500 is definitely not reliable too
    acpihGoToSleep(&G_hACPI, ACPI_STATE_S5);
    acpihClose(&G_hACPI);
}

#1 fixed xworkplace crash, reporting address restricted shmuel
Description

XWorkplace crashed during shutdown. I attempted to comply with Please send a bug report to xworkplace-user@…, but your e-mail server rejected it with the message <xworkplace-user@…>: ezmlm-issubn: fatal: unable to open allow/subscribers/T: access denied Sorry, only subscribers may post.

I am attaching the trap log for the original problem, and suggest that the text in xwptrap be amended to either provide a deliverable address or to describe the need to subscribe.

1 2
Note: See TracQuery for help on using queries.