Skip to content
Snippets Groups Projects
Commit 0d7887f5 authored by Francesco Andreuzzi's avatar Francesco Andreuzzi
Browse files

placed a in.in call to activate suggestions

parent 96466226
No related branches found
No related tags found
No related merge requests found
...@@ -140,7 +140,9 @@ public class LauncherActivity extends Activity implements Reloadable { ...@@ -140,7 +140,9 @@ public class LauncherActivity extends Activity implements Reloadable {
ViewGroup mainView = (ViewGroup) findViewById(R.id.mainview); ViewGroup mainView = (ViewGroup) findViewById(R.id.mainview);
main = new MainManager(this, in, out, preferencesManager, policy, component, clearer); main = new MainManager(this, in, out, preferencesManager, policy, component, clearer);
ui = new UIManager(main.getInfo(), this, mainView, ex, policy, component, preferencesManager, getResources()); ui = new UIManager(main.getInfo(), this, mainView, ex, policy, component, preferencesManager);
in.in(Tuils.EMPTYSTRING);
System.gc(); System.gc();
} }
...@@ -149,14 +151,13 @@ public class LauncherActivity extends Activity implements Reloadable { ...@@ -149,14 +151,13 @@ public class LauncherActivity extends Activity implements Reloadable {
final File tuiFolder = Tuils.getTuiFolder(); final File tuiFolder = Tuils.getTuiFolder();
while (true) { while (true) {
if (tuiFolder.isDirectory() || tuiFolder.mkdir()) if (tuiFolder.isDirectory() || tuiFolder.mkdir()) {
break; break;
}
try { try {
Thread.sleep(FILEUPDATE_DELAY); Thread.sleep(FILEUPDATE_DELAY);
} catch (InterruptedException e) { } catch (InterruptedException e) {}
e.printStackTrace();
}
} }
return tuiFolder; return tuiFolder;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment