mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-06 00:18:39 +00:00
Fix #1915 : Unable to stop the status bar from autohiding
This commit is contained in:
parent
01adb882ea
commit
a5742f892d
3 changed files with 32 additions and 8 deletions
|
@ -122,6 +122,20 @@ dl.singleline dd {
|
||||||
width: auto;
|
width: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.detailsPanel .x-panel-header {
|
||||||
|
height: 0;
|
||||||
|
padding: 0;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.detailsPanel .x-tool {
|
||||||
|
height: 15px;
|
||||||
|
z-index: 1;
|
||||||
|
position: fixed;
|
||||||
|
right: 0;
|
||||||
|
margin: 5px 10px;
|
||||||
|
}
|
||||||
|
|
||||||
/* Login Window */
|
/* Login Window */
|
||||||
.x-deluge-login-window-icon {
|
.x-deluge-login-window-icon {
|
||||||
background: url('../icons/login.png') no-repeat 2px;
|
background: url('../icons/login.png') no-repeat 2px;
|
||||||
|
|
|
@ -56,6 +56,22 @@ deluge.ui = {
|
||||||
deluge.sidebar = new Deluge.Sidebar();
|
deluge.sidebar = new Deluge.Sidebar();
|
||||||
deluge.statusbar = new Deluge.Statusbar();
|
deluge.statusbar = new Deluge.Statusbar();
|
||||||
|
|
||||||
|
this.detailsPanel = new Ext.Panel({
|
||||||
|
id: 'detailsPanel',
|
||||||
|
cls: 'detailsPanel',
|
||||||
|
region: 'south',
|
||||||
|
split: true,
|
||||||
|
height: 215,
|
||||||
|
minSize: 100,
|
||||||
|
collapsible: true,
|
||||||
|
margins: '0 5 5 5',
|
||||||
|
cmargins: '0 5 5 5',
|
||||||
|
layout: 'fit',
|
||||||
|
items: [
|
||||||
|
deluge.details
|
||||||
|
],
|
||||||
|
});
|
||||||
|
|
||||||
this.MainPanel = new Ext.Panel({
|
this.MainPanel = new Ext.Panel({
|
||||||
id: 'mainPanel',
|
id: 'mainPanel',
|
||||||
iconCls: 'x-deluge-main-panel',
|
iconCls: 'x-deluge-main-panel',
|
||||||
|
@ -63,7 +79,7 @@ deluge.ui = {
|
||||||
tbar: deluge.toolbar,
|
tbar: deluge.toolbar,
|
||||||
items: [
|
items: [
|
||||||
deluge.sidebar,
|
deluge.sidebar,
|
||||||
deluge.details,
|
this.detailsPanel,
|
||||||
deluge.torrents
|
deluge.torrents
|
||||||
],
|
],
|
||||||
bbar: deluge.statusbar
|
bbar: deluge.statusbar
|
||||||
|
|
|
@ -36,13 +36,7 @@ Ext.namespace('Deluge.details');
|
||||||
*/
|
*/
|
||||||
Deluge.details.DetailsPanel = Ext.extend(Ext.TabPanel, {
|
Deluge.details.DetailsPanel = Ext.extend(Ext.TabPanel, {
|
||||||
|
|
||||||
region: 'south',
|
|
||||||
id: 'torrentDetails',
|
id: 'torrentDetails',
|
||||||
split: true,
|
|
||||||
height: 210,
|
|
||||||
minSize: 100,
|
|
||||||
collapsible: true,
|
|
||||||
margins: '0 5 5 5',
|
|
||||||
activeTab: 0,
|
activeTab: 0,
|
||||||
|
|
||||||
initComponent: function() {
|
initComponent: function() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue