Skip to content

Commit

Permalink
another fix for spannables in case list
Browse files Browse the repository at this point in the history
  • Loading branch information
Will Pride committed Apr 15, 2015
1 parent ffde700 commit eef7d7e
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@
import java.util.List;
import java.util.Timer;
import java.util.TimerTask;
import java.util.Vector;

/**
*
Expand Down Expand Up @@ -171,7 +170,7 @@ public void onCreate(Bundle savedInstanceState) {
rightFrame = (FrameLayout)findViewById(R.id.screen_compound_select_right_pane);

TextView message = (TextView)findViewById(R.id.screen_compound_select_prompt);
message.setText(localize("select.placeholder.message", new String[]{Localization.get("cchq.case")}));
message.setText(Localization.get("select.placeholder.message", new String[]{Localization.get("cchq.case")}));
} else {
setContentView(R.layout.entity_select_layout);
//So we're not in landscape mode anymore, but were before. If we had something selected, we
Expand Down Expand Up @@ -585,10 +584,10 @@ public void onTextChanged(CharSequence s, int start, int before, int count) {
@Override
public boolean onCreateOptionsMenu(Menu menu) {
super.onCreateOptionsMenu(menu);
menu.add(0, MENU_SORT, MENU_SORT, localize("select.menu.sort")).setIcon(
menu.add(0, MENU_SORT, MENU_SORT, Localization.get("select.menu.sort")).setIcon(
android.R.drawable.ic_menu_sort_alphabetically);
if(mMappingEnabled) {
menu.add(0, MENU_MAP, MENU_MAP, localize("select.menu.map")).setIcon(
menu.add(0, MENU_MAP, MENU_MAP, Localization.get("select.menu.map")).setIcon(
android.R.drawable.ic_menu_mapmode);
}
Action action = shortSelect.getCustomAction();
Expand Down

0 comments on commit eef7d7e

Please sign in to comment.