Rename meta_window_visible_on_workspace to

2004-12-22  Elijah Newren  <newren@gmail.com>

	* src/core.c (meta_core_user_lower_and_unfocus):
	* src/display.c (meta_display_get_current_tab):
	* src/stack.c (get_default_focus_window, meta_stack_list_windows):
	* src/window.c (set_net_wm_state, meta_window_should_be_showing,
	implement_showing, meta_window_activate,
	meta_window_notify_focus):
	* src/window.h:
	* src/workspace.c (meta_workspace_list_windows):

	Rename meta_window_visible_on_workspace to
	meta_window_located_on_workspace (whether or not the window was
	showing wasn't taken into account, which made "visible"
	confusing).  Fixes #136314.
This commit is contained in:
Elijah Newren
2004-12-23 00:20:33 +00:00
committed by Elijah Newren
parent f4f8699d84
commit e46fc46701
7 changed files with 27 additions and 12 deletions

View File

@@ -4119,7 +4119,7 @@ meta_display_get_tab_current (MetaDisplay *display,
window->screen == screen &&
IN_TAB_CHAIN (window, type) &&
(workspace == NULL ||
meta_window_visible_on_workspace (window, workspace)))
meta_window_located_on_workspace (window, workspace)))
return window;
else
return NULL;