FeJQ

Results 5 issues of FeJQ

IA32.h里头的GuestIa32SYSENTEREIP值有误

在多显示屏的环境下, 将主窗体从当前屏幕拖动到另一块屏幕范围内后, 标题栏区域会变成白色, 此时松开鼠标, 标题栏会重新显示, 但主窗体的height会减少一个标题栏的高度, 来回拖动多次后, 主窗体的heigh就等于标题栏高度了 ![image](https://github.com/zhuzichu520/FluentUI/assets/41857119/c5f2c12e-95d5-4788-92ff-a90048150af6)

即类似qt安装器这样, 可以选中子选项, 父级复选项的状态也会随之改变 ![image](https://github.com/zhuzichu520/FluentUI/assets/41857119/da7d9f3e-f9e5-4fae-a11b-8f23b8ccb41f)

I want use MessageOnlyFormatter first, then switch to TxtFormatter, but following code is not working ```cpp static plog::DynamicAppender dynamicAppender; static plog::RollingFileAppender startupAppender(logFileName.c_str(), logMaxSize, logMaxCount); static plog::RollingFileAppender normalAppender(logFileName.c_str(), logMaxSize, logMaxCount); dynamicAppender.addAppender(&startupAppender);...

question