mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-02-10 13:54:23 +00:00
Merge pull request #13484 from Chocobo1/webui
Fix image not loading under proxy
This commit is contained in:
commit
4fa8862398
@ -578,10 +578,10 @@ void AdvancedSettings::loadAdvancedSettings()
|
|||||||
}
|
}
|
||||||
connect(&m_comboBoxInterface, qOverload<int>(&QComboBox::currentIndexChanged)
|
connect(&m_comboBoxInterface, qOverload<int>(&QComboBox::currentIndexChanged)
|
||||||
, this, &AdvancedSettings::updateInterfaceAddressCombo);
|
, this, &AdvancedSettings::updateInterfaceAddressCombo);
|
||||||
addRow(NETWORK_IFACE, tr("Network Interface"), &m_comboBoxInterface);
|
addRow(NETWORK_IFACE, tr("Network interface"), &m_comboBoxInterface);
|
||||||
// Network interface address
|
// Network interface address
|
||||||
updateInterfaceAddressCombo();
|
updateInterfaceAddressCombo();
|
||||||
addRow(NETWORK_IFACE_ADDRESS, tr("Optional IP Address to bind to"), &m_comboBoxInterfaceAddress);
|
addRow(NETWORK_IFACE_ADDRESS, tr("Optional IP address to bind to"), &m_comboBoxInterfaceAddress);
|
||||||
// Announce IP
|
// Announce IP
|
||||||
m_lineEditAnnounceIP.setText(session->announceIP());
|
m_lineEditAnnounceIP.setText(session->announceIP());
|
||||||
addRow(ANNOUNCE_IP, tr("IP Address to report to trackers (requires restart)"), &m_lineEditAnnounceIP);
|
addRow(ANNOUNCE_IP, tr("IP Address to report to trackers (requires restart)"), &m_lineEditAnnounceIP);
|
||||||
|
@ -1765,7 +1765,7 @@ window.qBittorrent.DynamicTable = (function() {
|
|||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
const treeImg = new Element('img', {
|
const treeImg = new Element('img', {
|
||||||
src: '../images/L.gif',
|
src: 'images/L.gif',
|
||||||
styles: {
|
styles: {
|
||||||
'margin-bottom': -2
|
'margin-bottom': -2
|
||||||
}
|
}
|
||||||
|
@ -890,7 +890,7 @@
|
|||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<label for="networkInterface">QBT_TR(Network Interface:)QBT_TR[CONTEXT=OptionsDialog]</label>
|
<label for="networkInterface">QBT_TR(Network interface:)QBT_TR[CONTEXT=OptionsDialog]</label>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<select id="networkInterface" style="width: 15em;">
|
<select id="networkInterface" style="width: 15em;">
|
||||||
@ -899,7 +899,7 @@
|
|||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<label for="optionalIPAddressToBind">QBT_TR(Optional IP Address to bind to:)QBT_TR[CONTEXT=OptionsDialog]</label>
|
<label for="optionalIPAddressToBind">QBT_TR(Optional IP address to bind to:)QBT_TR[CONTEXT=OptionsDialog]</label>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<select id="optionalIPAddressToBind" style="width: 15em;">
|
<select id="optionalIPAddressToBind" style="width: 15em;">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user