This commit is contained in:
parent
c238abdf4c
commit
132d3c1d3c
@ -1,271 +0,0 @@
|
|||||||
Index: lxsession-0.4.9.3.git20130914/lxsession-default-apps/combobox.vala
|
|
||||||
===================================================================
|
|
||||||
--- lxsession-0.4.9.3.git20130914.orig/lxsession-default-apps/combobox.vala
|
|
||||||
+++ lxsession-0.4.9.3.git20130914/lxsession-default-apps/combobox.vala
|
|
||||||
@@ -84,7 +84,7 @@ namespace LDefaultApps
|
|
||||||
if (entry_name != null)
|
|
||||||
{
|
|
||||||
var entry_default = builder.get_object (entry_name) as Entry;
|
|
||||||
- entry_default.hide_all();
|
|
||||||
+ entry_default.hide();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@@ -108,7 +108,7 @@ namespace LDefaultApps
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
- entry.hide_all();
|
|
||||||
+ entry.hide();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
Index: lxsession-0.4.9.3.git20130914/lxsession-default-apps/main.vala
|
|
||||||
===================================================================
|
|
||||||
--- lxsession-0.4.9.3.git20130914.orig/lxsession-default-apps/main.vala
|
|
||||||
+++ lxsession-0.4.9.3.git20130914/lxsession-default-apps/main.vala
|
|
||||||
@@ -1222,8 +1222,8 @@ namespace LDefaultApps
|
|
||||||
|
|
||||||
if (return_combobox_text(disable_autostart_combobox) == "all")
|
|
||||||
{
|
|
||||||
- auto_vbox.hide_all();
|
|
||||||
- running_apps.hide_all();
|
|
||||||
+ auto_vbox.hide();
|
|
||||||
+ running_apps.hide();
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
@@ -1344,198 +1344,198 @@ namespace LDefaultApps
|
|
||||||
/* Panel hide */
|
|
||||||
if (return_combobox_position(panel_command_combobox) != 99)
|
|
||||||
{
|
|
||||||
- panel_command_entry.hide_all();
|
|
||||||
+ panel_command_entry.hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (return_combobox_position(panel_session_combobox) != 99)
|
|
||||||
{
|
|
||||||
- panel_session_entry.hide_all();
|
|
||||||
+ panel_session_entry.hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Dock hide */
|
|
||||||
if (return_combobox_position(dock_command_combobox) != 99)
|
|
||||||
{
|
|
||||||
- dock_command_entry.hide_all();
|
|
||||||
+ dock_command_entry.hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (return_combobox_position(dock_session_combobox) != 99)
|
|
||||||
{
|
|
||||||
- dock_session_entry.hide_all();
|
|
||||||
+ dock_session_entry.hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Window manager hide */
|
|
||||||
if (return_combobox_position(window_command_combobox) != 99)
|
|
||||||
{
|
|
||||||
- window_command_entry.hide_all();
|
|
||||||
+ window_command_entry.hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (return_combobox_position(window_session_combobox) != 99)
|
|
||||||
{
|
|
||||||
- window_session_entry.hide_all();
|
|
||||||
+ window_session_entry.hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (return_combobox_position(window_extras_combobox) != 99)
|
|
||||||
{
|
|
||||||
- window_extras_entry.hide_all();
|
|
||||||
+ window_extras_entry.hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Screensaver hide */
|
|
||||||
if (return_combobox_position(screensaver_command_combobox) != 99)
|
|
||||||
{
|
|
||||||
- screensaver_command_entry.hide_all();
|
|
||||||
+ screensaver_command_entry.hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Power Manager hide */
|
|
||||||
if (return_combobox_position(power_command_combobox) != 99)
|
|
||||||
{
|
|
||||||
- power_command_entry.hide_all();
|
|
||||||
+ power_command_entry.hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
/* File manager hide */
|
|
||||||
if (return_combobox_position(file_command_combobox) != 99)
|
|
||||||
{
|
|
||||||
- file_command_entry.hide_all();
|
|
||||||
+ file_command_entry.hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (return_combobox_position(file_session_combobox) != 99)
|
|
||||||
{
|
|
||||||
- file_session_entry.hide_all();
|
|
||||||
+ file_session_entry.hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (return_combobox_position(file_extras_combobox) != 99)
|
|
||||||
{
|
|
||||||
- file_extras_entry.hide_all();
|
|
||||||
+ file_extras_entry.hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Desktop hide */
|
|
||||||
if (return_combobox_position(desktop_command_combobox) != 99)
|
|
||||||
{
|
|
||||||
- desktop_command_entry.hide_all();
|
|
||||||
+ desktop_command_entry.hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (return_combobox_position(desktop_wallpaper_combobox) != 99)
|
|
||||||
{
|
|
||||||
- desktop_wallpaper_entry.hide_all();
|
|
||||||
+ desktop_wallpaper_entry.hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Composite hide */
|
|
||||||
if (return_combobox_position(composite_command_combobox) != 99)
|
|
||||||
{
|
|
||||||
- composite_command_entry.hide_all();
|
|
||||||
+ composite_command_entry.hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (return_combobox_position(composite_autostart_combobox) != 99)
|
|
||||||
{
|
|
||||||
- composite_autostart_entry.hide_all();
|
|
||||||
+ composite_autostart_entry.hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
/* IM1 hide */
|
|
||||||
if (return_combobox_position(im1_command_combobox) != 99)
|
|
||||||
{
|
|
||||||
- im1_command_entry.hide_all();
|
|
||||||
+ im1_command_entry.hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (return_combobox_position(im1_autostart_combobox) != 99)
|
|
||||||
{
|
|
||||||
- im1_autostart_entry.hide_all();
|
|
||||||
+ im1_autostart_entry.hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
/* IM2 hide */
|
|
||||||
if (return_combobox_position(im2_command_combobox) != 99)
|
|
||||||
{
|
|
||||||
- im2_command_entry.hide_all();
|
|
||||||
+ im2_command_entry.hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (return_combobox_position(im2_autostart_combobox) != 99)
|
|
||||||
{
|
|
||||||
- im2_autostart_entry.hide_all();
|
|
||||||
+ im2_autostart_entry.hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Widget1 hide */
|
|
||||||
if (return_combobox_position(widget1_command_combobox) != 99)
|
|
||||||
{
|
|
||||||
- widget1_command_entry.hide_all();
|
|
||||||
+ widget1_command_entry.hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (return_combobox_position(widget1_autostart_combobox) != 99)
|
|
||||||
{
|
|
||||||
- widget1_autostart_entry.hide_all();
|
|
||||||
+ widget1_autostart_entry.hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Polkit hide */
|
|
||||||
if (return_combobox_position(polkit_command_combobox) != 99)
|
|
||||||
{
|
|
||||||
- polkit_command_entry.hide_all();
|
|
||||||
+ polkit_command_entry.hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Network GUI hide */
|
|
||||||
if (return_combobox_position(network_command_combobox) != 99)
|
|
||||||
{
|
|
||||||
- network_command_entry.hide_all();
|
|
||||||
+ network_command_entry.hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Audio manager hide */
|
|
||||||
if (return_combobox_position(audio_command_combobox) != 99)
|
|
||||||
{
|
|
||||||
- audio_command_entry.hide_all();
|
|
||||||
+ audio_command_entry.hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Quit manager hide */
|
|
||||||
if (return_combobox_position(quit_command_combobox) != 99)
|
|
||||||
{
|
|
||||||
- quit_command_entry.hide_all();
|
|
||||||
+ quit_command_entry.hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (return_combobox_position(quit_image_combobox) != 99)
|
|
||||||
{
|
|
||||||
- quit_image_entry.hide_all();
|
|
||||||
+ quit_image_entry.hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (return_combobox_position(quit_layout_combobox) != 99)
|
|
||||||
{
|
|
||||||
- quit_layout_entry.hide_all();
|
|
||||||
+ quit_layout_entry.hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Workspace manager hide */
|
|
||||||
if (return_combobox_position(workspace_command_combobox) != 99)
|
|
||||||
{
|
|
||||||
- workspace_command_entry.hide_all();
|
|
||||||
+ workspace_command_entry.hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Launcher manager hide */
|
|
||||||
if (return_combobox_position(launcher_command_combobox) != 99)
|
|
||||||
{
|
|
||||||
- launcher_command_entry.hide_all();
|
|
||||||
+ launcher_command_entry.hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Terminal manager hide */
|
|
||||||
if (return_combobox_position(terminal_command_combobox) != 99)
|
|
||||||
{
|
|
||||||
- terminal_command_entry.hide_all();
|
|
||||||
+ terminal_command_entry.hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Screenshot manager hide */
|
|
||||||
if (return_combobox_position(screenshot_command_combobox) != 99)
|
|
||||||
{
|
|
||||||
- screenshot_command_entry.hide_all();
|
|
||||||
+ screenshot_command_entry.hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Lock manager hide */
|
|
||||||
if (return_combobox_position(lock_command_combobox) != 99)
|
|
||||||
{
|
|
||||||
- lock_command_entry.hide_all();
|
|
||||||
+ lock_command_entry.hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Upgrade manager hide */
|
|
||||||
if (return_combobox_position(upgrade_command_combobox) != 99)
|
|
||||||
{
|
|
||||||
- upgrade_command_entry.hide_all();
|
|
||||||
+ upgrade_command_entry.hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Clipboard manager hide */
|
|
||||||
if (return_combobox_position(clipboard_command_combobox) != 99)
|
|
||||||
{
|
|
||||||
- clipboard_command_entry.hide_all();
|
|
||||||
+ clipboard_command_entry.hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
/* start main loop */
|
|
Loading…
Reference in New Issue
Block a user