mirror of
https://github.com/labwc/labwc.git
synced 2025-10-29 05:40:24 -04:00
Fixed some typos
This commit is contained in:
parent
6cf19d1cdb
commit
785a34e8ad
7 changed files with 10 additions and 10 deletions
4
NEWS.md
4
NEWS.md
|
|
@ -577,7 +577,7 @@ reported, tested and fixed issues. Particular mentions go to @bi4k8,
|
||||||
into account exclusive layer-shell clients. Written-by: @Consolatis
|
into account exclusive layer-shell clients. Written-by: @Consolatis
|
||||||
- Restore natural geometry when moving tiled/maximized window
|
- Restore natural geometry when moving tiled/maximized window
|
||||||
Fixes #391. Written-by: @Consolatis
|
Fixes #391. Written-by: @Consolatis
|
||||||
- Improve action implementation to take a list of arguments in preperation
|
- Improve action implementation to take a list of arguments in preparation
|
||||||
for actions with multiple arguments. Written-by: @Consolatis
|
for actions with multiple arguments. Written-by: @Consolatis
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
@ -863,7 +863,7 @@ Compile with wlroots 0.13.0
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- Support wlr-output-management protcol for setting output position, scale
|
- Support wlr-output-management protocol for setting output position, scale
|
||||||
and orientation with kanshi or similar
|
and orientation with kanshi or similar
|
||||||
- Support server side decoration rounded corners
|
- Support server side decoration rounded corners
|
||||||
- Change built-in theme to match default GTK style
|
- Change built-in theme to match default GTK style
|
||||||
|
|
|
||||||
|
|
@ -189,7 +189,7 @@ Actions are used in menus and keyboard/mouse bindings.
|
||||||
effectively sharing only the region of the screen.
|
effectively sharing only the region of the screen.
|
||||||
|
|
||||||
It must be noted that overlaying virtual output and real output is not
|
It must be noted that overlaying virtual output and real output is not
|
||||||
endorsed or explicitely supported by wlroots. For example, after configuring
|
endorsed or explicitly supported by wlroots. For example, after configuring
|
||||||
virtual output, real output must be reconfigured as well (for the overlay
|
virtual output, real output must be reconfigured as well (for the overlay
|
||||||
configuration to work correctly). This is the example configuration:
|
configuration to work correctly). This is the example configuration:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -72,7 +72,7 @@ struct input {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Virtual keyboards should not belong to seat->keyboard_group. As a result we
|
* Virtual keyboards should not belong to seat->keyboard_group. As a result we
|
||||||
* need to be able to ascertain which wlr_keyboard key/modifer events come from
|
* need to be able to ascertain which wlr_keyboard key/modifier events come from
|
||||||
* and we achieve that by using `struct keyboard` which inherits `struct input`
|
* and we achieve that by using `struct keyboard` which inherits `struct input`
|
||||||
* and adds keybord specific listeners and a wlr_keyboard pointer.
|
* and adds keybord specific listeners and a wlr_keyboard pointer.
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ nodename(xmlNode *node, char *buf, int len)
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Ignore superflous 'text.' in node name */
|
/* Ignore superfluous 'text.' in node name */
|
||||||
if (node->parent && !strcmp((char *)node->name, "text")) {
|
if (node->parent && !strcmp((char *)node->name, "text")) {
|
||||||
node = node->parent;
|
node = node->parent;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -100,7 +100,7 @@ session_environment_init(const char *dir)
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
* Set default for XDG_CURRENT_DESKTOP so xdg-desktop-portal-wlr is happy.
|
* Set default for XDG_CURRENT_DESKTOP so xdg-desktop-portal-wlr is happy.
|
||||||
* May be overriden either by already having a value set or by the user
|
* May be overridden either by already having a value set or by the user
|
||||||
* supplied environment file.
|
* supplied environment file.
|
||||||
*/
|
*/
|
||||||
setenv("XDG_CURRENT_DESKTOP", "wlroots", 0);
|
setenv("XDG_CURRENT_DESKTOP", "wlroots", 0);
|
||||||
|
|
@ -109,7 +109,7 @@ session_environment_init(const char *dir)
|
||||||
* Set default for _JAVA_AWT_WM_NONREPARENTING so that Java applications
|
* Set default for _JAVA_AWT_WM_NONREPARENTING so that Java applications
|
||||||
* such as JetBrains/Intellij Idea do render blank windows and menus
|
* such as JetBrains/Intellij Idea do render blank windows and menus
|
||||||
* with incorrect offset. See https://github.com/swaywm/sway/issues/595
|
* with incorrect offset. See https://github.com/swaywm/sway/issues/595
|
||||||
* May be overriden either by already having a value set or by the user
|
* May be overridden either by already having a value set or by the user
|
||||||
* supplied environment file.
|
* supplied environment file.
|
||||||
*/
|
*/
|
||||||
setenv("_JAVA_AWT_WM_NONREPARENTING", "1", 0);
|
setenv("_JAVA_AWT_WM_NONREPARENTING", "1", 0);
|
||||||
|
|
|
||||||
|
|
@ -944,7 +944,7 @@ cursor_button_press(struct seat *seat, uint32_t button,
|
||||||
if (ctx.type != LAB_SSD_MENU) {
|
if (ctx.type != LAB_SSD_MENU) {
|
||||||
close_menu = true;
|
close_menu = true;
|
||||||
} else if (menu_call_actions(ctx.node)) {
|
} else if (menu_call_actions(ctx.node)) {
|
||||||
/* Action was successfull, may fail if item just opens a submenu */
|
/* Action was successful, may fail if item just opens a submenu */
|
||||||
close_menu = true;
|
close_menu = true;
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
|
|
||||||
|
|
@ -205,7 +205,7 @@ new_output_notify(struct wl_listener *listener, void *data)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Configures the output created by the backend to use our allocator
|
* Configures the output created by the backend to use our allocator
|
||||||
* and our renderer. Must be done once, before commiting the output
|
* and our renderer. Must be done once, before committing the output
|
||||||
*/
|
*/
|
||||||
if (!wlr_output_init_render(wlr_output, server->allocator,
|
if (!wlr_output_init_render(wlr_output, server->allocator,
|
||||||
server->renderer)) {
|
server->renderer)) {
|
||||||
|
|
@ -492,7 +492,7 @@ handle_output_manager_apply(struct wl_listener *listener, void *data)
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Take the way outputs are currently configured/layed out and turn that into
|
* Take the way outputs are currently configured/laid out and turn that into
|
||||||
* a struct that we send to clients via the wlr_output_configuration v1
|
* a struct that we send to clients via the wlr_output_configuration v1
|
||||||
* interface
|
* interface
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue