edpil02

Results 39 comments of edpil02

Most of the time it stucks after some syscalls return (often syscall 0x38 or futex syscall). the menu keeps working, i can restart or kill the program but not keep...

With edb 1.0 you can catch or pass exceptions to many sig signals, not with 0.9 version, and i'm wondering if there is a problem in this feature. I noticed...

"My binary" is a port of a windows program to linux. Perhaps the code is crappy so ..... Thanks again.

Just tried latest git with the same binary: - The debugger doesnt stuck on syscall 0x38 now, but stop on a RT_SIGPROCMASK (that's weird) and Futex syscalls.Running again is possible...

There is a weird issue with alpha option in the color-schemes file: With alpha value in [Colors:Window] (BackgroundNormal) , menubar and toolbar don't follow titlebar color rule in contrary of...

Get a good result after trying different alpha values.But a issue remains in the menubar ; only text regions are blurred. ![Screenshot_20210407_085446](https://user-images.githubusercontent.com/43163048/113824502-2e1a0f80-9780-11eb-83d7-7f039258bab7.png)

I solve the issue i modify the line : painter->fillRect(rect, _helper->alphaColor(option->palette.color( QPalette::Window ), opacity/100.0) ); with painter->fillRect(rect, _helper->alphaColor(option->palette.color( QPalette::Window ), opacity) ); in bool Style::drawMenuBarEmptyAreaControl() fonction. ![image](https://user-images.githubusercontent.com/43163048/113862660-fe333200-97a8-11eb-84b6-5591596ff0d7.png)

/master/kstyle/lightlystyle.cpp line 4998 4996 // draw background 4997 int opacity = _helper->titleBarColor( true ).alphaF()*100.0; 4998 painter->fillRect(rect, _helper->alphaColor(option->palette.color( QPalette::Window ), opacity/100.0) );

I made a change for that issue a few months ago .. See : https://github.com/Luwx/Lightly/issues/98

i have to deal with the same issue and begun to find a solution ![Ligtly](https://user-images.githubusercontent.com/43163048/197496744-6330c696-b0aa-4693-a43b-13ecbebba5e7.png)