mergE
Some checks are pending
pyrite-dev/milsko/pipeline/pr-master Build started...

This commit is contained in:
IoIxD 2026-09-16 15:25:09 -07:00
commit 2c61ee9c6c
3 changed files with 3 additions and 5 deletions

View file

@ -498,7 +498,7 @@ configure_file(
install( install(
FILES ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}.pc FILES ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}.pc
DESTINATION $ENV{MINGW_PREFIX}/${CMAKE_INSTALL_DATADIR}/pkgconfig DESTINATION $ENV{MINGW_PREFIX}/${CMAKE_INSTALL_FULL_DATADIR}/pkgconfig
) )
if(MW_INSTALL_HEADERS) if(MW_INSTALL_HEADERS)

View file

@ -442,8 +442,6 @@ struct _MwLLWayland {
MwLLPixmap icon_pixmap; MwLLPixmap icon_pixmap;
MwU64 time_test;
MwI64 keyboard_rate; MwI64 keyboard_rate;
MwI32 keyboard_delay; MwI32 keyboard_delay;
int last_pressed_key; int last_pressed_key;

View file

@ -514,7 +514,7 @@ static void layout(MwWidget handle) {
{ {
int t = MwTextWidth(handle, TOPFONT, l->text); int t = MwTextWidth(handle, TOPFONT, l->text);
if(x > 0) x += MwTextWidth(handle, TOPFONT, " "); if(x > 0) x += MwTextWidth(handle, TOPFONT, ".");
if((x + t) >= w) { if((x + t) >= w) {
x = 0; x = 0;
@ -543,7 +543,7 @@ static void layout(MwWidget handle) {
} }
case MwDOCUMENT_SPACE: case MwDOCUMENT_SPACE:
{ {
x += MwTextWidth(handle, TOPFONT, " "); x += MwTextWidth(handle, TOPFONT, ".");
break; break;
} }
case MwDOCUMENT_NEWLINE: case MwDOCUMENT_NEWLINE: