SVN revision: 26078
This commit is contained in:
Viktor Kojouharov 2006-09-23 23:37:15 +00:00
parent 1dc60a7a19
commit 36eeab925b
2 changed files with 8 additions and 4 deletions

2
TODO
View File

@ -13,8 +13,6 @@ Some of the things (in very short form) that need to be done to E17...
profiled and leaned down by many factors :)
* BUG: e17 screen res diaolg doesnt work under xephyr - why?
* BUG: "match this window only" doesnt fall back to other unused remembers
* BUG: if app asks for borderless in properties - borderless toggle in menu
doesn't have any effect.
* BUG: xdaliclock -transparent doesnt use shaped border (not handling shape
change later)
* BUG: Removing a module from a shelf with the "Shelf Contents" dialog sometimes

View File

@ -701,9 +701,15 @@ _e_border_menu_cb_borderless(void *data, E_Menu *m, E_Menu_Item *mi)
{
toggle = e_menu_item_toggle_get(mi);
if (toggle)
bd->borderless = 1;
{
bd->borderless = 1;
ecore_x_mwm_borderless_set(bd->client.win, 1);
}
else
bd->borderless = 0;
{
bd->borderless = 0;
ecore_x_mwm_borderless_set(bd->client.win, 0);
}
bd->client.border.changed = 1;
bd->changed = 1;