mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-01 19:57:11 +01:00
add ok button to about dialog
This commit is contained in:
parent
ca8a901bbb
commit
a4e65f667d
1 changed files with 2 additions and 1 deletions
|
@ -344,7 +344,7 @@ public class DlgDelegate {
|
||||||
.setIcon( R.drawable.icon48x48 )
|
.setIcon( R.drawable.icon48x48 )
|
||||||
.setTitle( R.string.app_name )
|
.setTitle( R.string.app_name )
|
||||||
.setView( view )
|
.setView( view )
|
||||||
.setPositiveButton( R.string.changes_button,
|
.setNegativeButton( R.string.changes_button,
|
||||||
new OnClickListener() {
|
new OnClickListener() {
|
||||||
@Override
|
@Override
|
||||||
public void onClick( DialogInterface dlg,
|
public void onClick( DialogInterface dlg,
|
||||||
|
@ -353,6 +353,7 @@ public class DlgDelegate {
|
||||||
FirstRunDialog.show( m_activity );
|
FirstRunDialog.show( m_activity );
|
||||||
}
|
}
|
||||||
} )
|
} )
|
||||||
|
.setPositiveButton( R.string.button_ok, null )
|
||||||
.create();
|
.create();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue