I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 0c46dc9b authored by str4d's avatar str4d
Browse files

Display auto-start setting in I2PTunnel details

parent 4b7f951e
No related branches found
No related tags found
No related merge requests found
...@@ -4,8 +4,6 @@ ...@@ -4,8 +4,6 @@
<Meeh> If I goto settings->addressbook it crashes <Meeh> If I goto settings->addressbook it crashes
<str4d> I have an Intent specified in the settings XML <str4d> I have an Intent specified in the settings XML
<str4d> But I can't specify the package there, because the package depends on the flavor <str4d> But I can't specify the package there, because the package depends on the flavor
- Display auto-start setting correctly in I2PTunnel
<zzz> shared clients tunnel is starting. Can't remember if i had it enabled before. But I go to i2ptunnel config page, and all the auto start boxes are unchecked
- Better addressbook column widths - Better addressbook column widths
<zzz> on the i2ptunnel and addressbook pages on the tablet, the columns are too skinny, they aren't as wide as the tab <zzz> on the i2ptunnel and addressbook pages on the tablet, the columns are too skinny, they aren't as wide as the tab
<zzz> only a few addressbook entries wrap but on i2ptunnel everything is wrapped and most of the screen is empty <zzz> only a few addressbook entries wrap but on i2ptunnel everything is wrapped and most of the screen is empty
......
...@@ -18,6 +18,7 @@ import android.view.MenuInflater; ...@@ -18,6 +18,7 @@ import android.view.MenuInflater;
import android.view.MenuItem; import android.view.MenuItem;
import android.view.View; import android.view.View;
import android.view.ViewGroup; import android.view.ViewGroup;
import android.widget.CheckBox;
import android.widget.TextView; import android.widget.TextView;
import android.widget.Toast; import android.widget.Toast;
...@@ -100,6 +101,9 @@ public class TunnelDetailFragment extends Fragment { ...@@ -100,6 +101,9 @@ public class TunnelDetailFragment extends Fragment {
TextView accessIfacePort = (TextView) v.findViewById(R.id.tunnel_access_interface_port); TextView accessIfacePort = (TextView) v.findViewById(R.id.tunnel_access_interface_port);
accessIfacePort.setText(mTunnel.getIfacePort()); accessIfacePort.setText(mTunnel.getIfacePort());
CheckBox autoStart = (CheckBox) v.findViewById(R.id.tunnel_autostart);
autoStart.setChecked(mTunnel.startAutomatically());
} }
return v; return v;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment